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
See also: selector/checkbox
jQuery("#hyperlink").click(function() { jQuery('#table input:checkbox').attr('disabled', true); return false; });