You can bind 'sortEnd' to tablesorter, see documentation:
http://tablesorter.com/docs/example-triggers.html
from the tablesorter documentation:
$(document).ready(function() { // call the tablesorter plugin, the magic happens in the markup $("table").tablesorter(); //assign the sortStart event $("table").bind("sortStart",function() { //do your magic here }).bind("sortEnd",function() { //when done finishing do other magic things }); });
source share