Я скачал плагин jQuery Tablesorter 2.0 с
http://tablesorter.com/jquery.tablesorter.zip и модифицировано
пример-pager.html, который находится в каталоге tablesorter / docs
Я написал дополнительные эффекты Rollover:
$(function() {
$("table")
.tablesorter({widthFixed: true, widgets: ['zebra']})
.tablesorterPager({container: $("#pager")});
/** Additional code */
$("tr").mouseover(function () {
$(this).addClass('over');
});
$("tr").mouseout(function () {
$(this).removeClass('over');
});
$("tr").click(function () {
$(this).addClass('marked');
});
$("tr").dblclick(function () {
$(this).removeClass('marked');
});
/** Additional code END */
});
И, конечно, изменил файл themes / blue / style.css:
/* Additional code */
table.tablesorter tbody tr.odd td {
background-color: #D1D1F0;
}
table.tablesorter tbody tr.even td {
background-color: #EFDEDE;
}
table.tablesorter tbody tr.over td {
background-color: #FBCA33;
}
table.tablesorter tbody tr.marked td {
background-color: #FB4133;
}
/* Additional code END*/
Все это прекрасно работает, НО, когда я перехожу на другие страницы, т.е. на страницы 2, 3 или 4
эффекты пропали! Я очень ценю вашу помощь