I have a webpage that returns search results in a table/form. I would like to have a select all checkbox, that would select all the checkboxes for the search results. My c
You can use jquery to do this in simpler way
$("form input:checkbox").attr('checked','true');