I need to disable all the check boxes inside a table cell when clicking on a hyperlink inside the same table.
I\'m using the following jquery code to select all the
$('table input[type=checkbox]').attr('disabled','true');
if you have an id for the table
$('table#ID input[type=checkbox]').attr('disabled','true');