jquery get row data from table loop code example
Example: jquery get each row in table
$('table > tbody > tr').each(function(index, tr) {
console.log(index);
console.log(tr);
});
$('table > tbody > tr').each(function(index, tr) {
console.log(index);
console.log(tr);
});