[jQuery] tablesorter and mousehoover

[jQuery] tablesorter and mousehoover


Hi,
I've setup tablesorter and tablesorter.pager for a table of about 100
rows, it's work fine..but if I add a function for create a class
hoover (on mouseover), the hoover effect work fine only at first ten
rows showed at first page. If I change page the class hoover
disappear.
$(document).ready(function() {
$("table")
.tablesorter({widthFixed: true, widgets: ['zebra'], sortList:
[[0,0],[1,0]]})
.tablesorterPager({container: $("#pager")});
$(".tablesorter
tr").hover(function(){$(this).addClass("hoover")},function(){$(this).removeClass("hoover")});
});
Thanks,
Alfredo