Possible Duplicate:
What is the best way to remove a table row with jQuery?
If I have table with 3 rows using tr
tag, how do I remove the first row (index 0) with either jquery or some other javascript?
try
$("tr").eq(0).remove();
However, like @Gregg said, take a look at official docs
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With