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

I have a table filled with a number of rows. How can I remove all the rows from the table?

share|improve this question

5 Answers

up vote 23 down vote accepted

Use .remove()

$("#yourtableid tr").remove();

If you want to keep the data for future use even after removing it then you can use .detach()

$("#yourtableid tr").detach();

If the rows are children of the table then you can use child selector instead of descendant selector, like

$("#yourtableid > tr").remove();
share|improve this answer
6  
careful with that last one: most browsers add an implicit tbody element around the tr elements. – nickf Apr 12 '10 at 6:20

Slightly quicker than removing each one individually:

$('#myTable').empty()

Technically, this will remove thead, tfoot and tbody elements too.

share|improve this answer

If you want to clear the data but keep the headers:

$('#myTableId tbody').remove();

Table must be formatet in this manner:

<table id="myTableId">
    <thead>
        <tr>
            <th>header1</th><th>header2</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>data1</td><td>data2</td>
        </tr>
    </tbody>
</table>
share|improve this answer
thanks.this helped – Ashika Umanga Umagiliya Jun 22 '12 at 7:57

I needed this:

$('#myTable tbody > tr').remove();

It deletes all rows except the header.

share|improve this answer

The nuclear option:

$("#yourtableid").html("");

Destroys everything inside of #yourtableid. Be careful with your selectors, as it will destroy any html in the selector you pass!

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.