I have a table rendered dynamically. There's one <tr class="dolly">
somewhere inside its <tbody>
that serves as a reference row - it gets cloned and filled with data later. I need to delete all rows except that one.
What I tried:
for
loop: uses an increment which quickly gets invalid as the rows are deletedwhile
loop: continues until all rows are deleted, which never happens because of the condition
Please let me know if you have any ideas. Please no jQuery.