vote up 3 vote down star
1

Using jQuery, how do I delete all rows in a table except the first? This is my first attempt at using index selectors. If I understand the examples correctly, the following should work:

$(some table selector).remove("tr:gt(0)");

which I would read as "Wrap some table in a jQuery object, then remove all 'tr' elements (rows) where the element index of such rows is greater than zero". In reality, it executes without generating an error, but doesn't remove any rows from the table.

What am I missing, and how do I fix this? Of course, I could use straight javascript, but I'm having so much fun with jQuery that I'd like to solve this using jQuery.

flag

4 Answers

vote up 10 vote down check

This should work:

$(document).ready(function() {
   $("someTableSelector").find("tr:gt(0)").remove();
});
link|flag
Many thanks -- that worked perfectly. – Ken Paul Dec 15 '08 at 23:15
vote up 0 vote down

Your selector doesn't need to be inside your remove.

It should look something like:

$("#tableID tr:gt(0)").remove();

Which means select every row except the first in the table with ID of tableID and remove them from the DOM.

link|flag
I agree. In my case, the table object had been previously selected. – Ken Paul Dec 16 '08 at 3:09
vote up 5 vote down

I think this is more readable given the intent:

$('someTableSelector').children( 'tr:not(:first)' ).remove();

Using children also takes care of the case where the first row contains a table by limiting the depth of the search.

If you have THEAD, TFOOT, and TBODY elements you'll need to do something different -- in that case, I suspect you'll leave the THEAD alone and remove all rows from TBODY and TFOOT elements.

link|flag
I agree -- thanks. I wish I could award multiple answers. – Ken Paul Dec 16 '08 at 3:17
vote up 1 vote down

If it were me, I'd probably boil it down to a single selector:

$('someTableSelector tr:not(:first)').remove();
link|flag

Your Answer

Get an OpenID
or

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