Wednesday, March 9, 2016

jQuery, loop over all rows in a table



jQuery, loop over all rows in a table
For example, row is current row, I want to loop over all the rows in jQuery
                               row.parent().find("tr").each(function(index) {
                                 alert(index);
                                });

No comments:

Post a Comment