I'm using the tablesorter plugin and having a tough time trying to
figure out why my click function does not work on the the next/second
page when using the pager plugin.

$(document).ready(function()
    {
        $("#myTable").tablesorter({widgets:
['zebra']}).tablesorterPager({container: $("#pager")});
            $('tbody tr').click(function(){
            alert('hi');
                });
    }
);

Reply via email to