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 sh
-Sorry this is very late reply.
The easiest way i have found to delete any row (and all other rows through iteration) is this
$('#rowid','#tableid').remove();
The rest is easy.