Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the jQuery tablesorter (http://tablesorter.com).

After being applied to a table by $('#myTable').tablesorter(), how can I remove it again from the table?

share|improve this question

2 Answers

up vote 12 down vote accepted
+50

There isn't a built-in function to do this, but you could remove the class names and event bindings to stop its functioning... try something like this:

$('table')
 .unbind('appendCache applyWidgetId applyWidgets sorton update updateCell')
 .removeClass('tablesorter')
 .find('thead th')
 .unbind('click mousedown')
 .removeClass('header headerSortDown headerSortUp');

The above won't work if you have the pager plugin running.

share|improve this answer
I see what the above does, but the reason I was looking to remove the tablesorter was due to a known bug in tablesorter. If the table has a new row added, and the trigger("update") is called the sort does not work correctly. The suggested workaround is to reapply .tablesorter() to the table. I was concerned if this might cause more memory to be used in comparison to removing/unbinding the tablesorter and then readding it. What do you think? Hope this makes sense! – psynnott Nov 18 '11 at 9:49
1  
Ah ok, I've actually forked a copy of tablesorter over on github... try it out and make sure the bug has been fixed ;) – Mottie Nov 18 '11 at 22:18
Not seeing it :( – psynnott Nov 21 '11 at 7:44
1  
+1, plus a bounty coming soon. This fixed a really hard to pinpoint bug where the plugin was restoring deleted data from the table when the sorting function was called again. – yahelc May 5 '12 at 16:56
yahelc, glad the question helped you in some way. Just to let you know, I stopped using tablesorter due to its speed mainly. I am using datatables (datatables.net) instead - it is so much better. I completely recommend it. – psynnott May 10 '12 at 11:28
show 1 more comment

use the function given below onclick event of remove shorting element

function removeTableShorter(){
$("#myTable").tablesorter({ 
headers: {
 0: {sorter: false},
 1: {sorter: false},
 2: {sorter: false},
 3: {sorter: false},
 4: {sorter: false},
 5: {sorter: false}
}
});
$('#myTable th').removeAttr('class');}

u may increase the number of headers according the number of columns of table.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.