[jQuery] jQuery tablesorterPager problem
Hello everybody!
I have a little problem with jquery tablesorterPager plugin.
In my table i have a checkbox for each row of data. I can check them
while i navigate through the table.
In the same page, i have a button that trigers:
$("table.tablesorter").each(function(){
$
(this).find("input[@type=checkbox]").filter(':checked').each(function()
{
alert($(this).attr('id'));
});
});
when the code get executed, i only get the alerts for the checkboxes
that are checked but only in the actual page of the table, and i need
to get all the checkboxex that are checked in the hole table.
¿Any solution?
Sorry for my english and thanks in advice