I've tried different solutions now, but I'm not able to remove the correct rows.
Note: In HTML5 it is valid to use numbers in ID.
html
<table>
<tr id="2"></tr>
<tr id="5"></tr>
<tr id="7"></tr>
<tr id="9"></tr>
</table>
js
var arr = new Array();
arr[0] = '7';
arr[1] = '9';
for(var row_id in arr) {
$('table tr[id='+row_id+']').remove();
}
The result is always the same - some of my top rows are removed, not the bottom two.
What am I missing in this code?
Update: Here is my fiddle - http://jsfiddle.net/6PkMK/1/