How to check multiple radio button, radio buttons having same name?
html, radio-button
Solution
You can't. Radio buttons are there for a single choice. For multiple choices, you need checkboxes.
Problem
I want to check multiple radio buttons, all radio buttons having same name but different ids. Here is my html code, ``` <span style="float:left;margin:0 0 0 10px">Proactivity</span> <label for="q11" style="width:auto;margin:0 60px 0 0;padding:0;"><input type="radio" id="qq[]" class="styled" value="Proactivity > Poor" name="q11[]">Poor</label> <label for="q11" style="width:auto;margin:0 18px 0 0;padding:0;"><input type="radio" id="qqa[]" class="styled" value="Proactivity > Good" name="q11[]">Good</label> <br/><br/> <span style="float:left;margin:0 0 0 10px">Service/support</span> <label for="q11" style="width:auto;margin:0 60px 0 0;padding:0;"><input type="radio" id="qq[]" class="styled" value="Service/support > Poor" name="q11[]">Poor</label> <label for="q11" style="width:auto;margin:0 18px 0 0;padding:0;"><input type="radio" id="qqa[]" class="styled" value="Service/support > Good" name="q11[]">Good</label> <br/><br/> <span style="float:left;margin:0 0 0 10px">Provision of <br />specialist skills</span> <label for="q11" style="width:auto;margin:0 60px 0 0;padding:0;"><input type="radio" id="qq[]" class="styled" value="Provision of specialist skills > Poor" name="q11[]">Poor</label> <label for="q11" style="width:auto;margin:0 18px 0 0;padding:0;"><input type="radio" id="qqa[]" class="styled" value="Provision of specialist skills > Good" name="q11[]">Good</label> ```