1// tr is the jquery object
2$(tr).find('td').each (function (index, td) {
3 console.log(td)
4});
5
6// for each tr get each td
7
8$('#tableContent tr').each(function(index, tr) {
9 $(tr).find('td').each (function (index, td) {
10 console.log(td)
11 });
12});