Reputation: 45
My English is not good, sorry...
I use tablesorter (tablesorter.com) to sort table in web site.
Please help me add a function to this plugin. I create function, but I don't know how to add my function to tablesorter
Regards,
Paris
Upvotes: 0
Views: 303
Reputation:
$(document).ready(function() {
$("#myTable").tablesorter(function(){
//your functionality code here
}); } );
Upvotes: 1