Paris
Paris

Reputation: 45

Add function to tablesorter (jQuery plugin)

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

Answers (1)

user529429
user529429

Reputation:

$(document).ready(function() {

$("#myTable").tablesorter(function(){

     //your  functionality code here 

}); } );

Upvotes: 1

Related Questions