[jQuery] tablesorter bug?

[jQuery] tablesorter bug?


The tablesorter is acting goofy and I'm wondering if anyone has any
insight to the problem or a way to fix it.
I'm adding rows to a table then calling tablesorter:
$('#myTable').tablesorter();
Works fine.
If I clear rows from the table then add more rows, I call tablesorter
again:
$('#myTable').tablesorter();
When I try to sort, records that were previously removed pop into my
table again.
There doesn't seem to be a way to clear the tablesorter before
reloading it with the new table results. For example:
$('#myTable').tablesorter('destroy');
$('#myTable').tablesorter();
Any suggestions?
Thanks in advance.