Does anyone knows how can I make a select all checkboxes in a table if I already have a column with checkboxes? I made one but when I click select all it selects all checkboxes from the table. I want to select checkboxes from a single column not all of them.
Share
Easy jQuery answer:
If you use jQuery version < 1.6:
This will check only checkboxes under the
<td>with the classtheClass.The requested Live DEMO
Or if you want to select the second column by the index:
Live DEMO