I\'m trying to see how I can fix a problem that I\'m having with jQuery Tablesoter widget called \'filter\', it stops working after the table is updated without any error messag
There is a lot of code to wade through, but you might want to try updating the table contents like this:
var $table = $("table.tablesorter"); $table.find('tbody').html(data); $table.trigger("update", [true]);
I'm only guessing that the replaceWith() function isn't working as intended.
replaceWith()