I have some code at the moment that hides a row that is deleted and then removes it using the .remove() function.
However I\'m having difficulty is making it remain
I found a solution that worked for me:
var usersTable = $(".tablesorter"); usersTable.trigger("update") .trigger("sorton", [usersTable.get(0).config.sortList]) .trigger("appendCache") .trigger("applyWidgets");
Put this after the place where you've edited the table.