I'm working with tablesorter and I have multiple tables. I made it so when a button is pushed all the data from one table is put into one main table, basically doing this:
$(SourceTable).find("tbody > tr").appendTo($ (TargetTable).find("tbody")); $(TargetTable).trigger("update"); This kind of works, all the rows get placed into the target table but when I trigger the update I get an error: table.config has no properties jquery.tablesorter.js line 136 I suspect the rows might have something bound to the old table which I'm destroying, so I think I have to disable tablesorter on the source tables before moving the rows but I can't figure out how to do this. Anyone have any ideas? -Scott