table each row jquery code example

Example 1: jquery for each tr in td

// tr is the jquery object
$(tr).find('td').each (function (index, td) {
  console.log(td)
});

// for each tr get each td

$('#tableContent tr').each(function(index, tr) {
  $(tr).find('td').each (function (index, td) {
    console.log(td)
  });
});

Example 2: jquery get each row in table

$('table > tbody  > tr').each(function(index, tr) { 
   console.log(index);
   console.log(tr);
});

Example 3: jquery table each rows with class

// I have a table (#tbLog) and rows (tr) contain class record.

$('#tbLog').find('tr.record').each(function(){
  console.log('Row with class',$(this).attr('class'));
});