I use the jquery tablesorter plugin and apply it to a table with id: #table
my search query requests results via ajax and replaces the table with a new table of the same id
if my code is as follows:
$('#table').tablesorter();
What can I add to make the plugin work with the new table? (I know the jquery live event, but how to use it in this case?
source
share