How to make this JS code to work with all the checkboxes within a td id="sel";
$(document).ready(function() {
$('input[name="selector"]').click(function() {
$("#sel :checkbox").attr('checked', $(this).is(':checked'));
});
});
|
Try this
|
|||
|
|
|
Ah okay, that makes sense... so it's like a 'Select All' selector? Here's an example...
The same thing would be used for all checkboxes within the sel that has id "sel"...
hint: you can only have one cell with id: "sel"... if you have more than one, only the first cell will be recognized with that id, if you want multiple cells to have an "id" of the same name, you must use the "name" attribute instead of the "id" attribute: Change your td definintion to
Now you can have multiple cells with the "sel" selector and all your checkboxes will check... |
||||
|
|
|
Here's my final solution; Thanks everybody!
|
||||
|
|
idattribute must be unique. – Sarfraz Jul 21 '11 at 19:11<td name="sel"><input type="checkbox" /></td>– BenAlabaster Jul 21 '11 at 20:00