I have a table filled with a number of rows. How can I remove all the rows from the table?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use .remove()
If you want to keep the data for future use even after removing it then you can use .detach()
If the rows are children of the table then you can use child selector instead of descendant selector, like
|
|||||
|
|
Slightly quicker than removing each one individually:
Technically, this will remove |
|||
|
|
|
If you want to clear the data but keep the headers:
Table must be formatet in this manner:
|
|||
|
|
|
I needed this:
It deletes all rows except the header. |
|||
|
|
|
The nuclear option:
Destroys everything inside of |
|||
|
|