I have the following scenario
First I get the total rows in my html table with JQuery as follows
var rowCount = $('#update_menu_items tr').length;
and then I get a result back.
Now I want to loop threw values with a for loop that should not exceed the rowcount, but I do not get a result back, since loop does not work. Not sure if I left something out.
Here's the loop
var i;
for (i=0;i<rowCount;i++)
alert(i);
}