I have a table with the โSelect Allโ checkbox as the first column of the heading and some simple code to select all the checkboxes on the page when I click on the heading heading.
$('#CheckAll').bind('click',function() { var checked = $(this).attr('checked'); $('input').attr('checked', checked); });
the code works fine, but as soon as I bind tablesorter to the table, the click event on #CheckAll no longer fires:
$('#ResultsTable').tablesorter( headers: { 0: { sorter: false} });
Any ideas?
source share