I have 3 tables with same class name table-sort. I would like to access those table by .each() and count the tr inside the tbody.
is it $("this tbody tr").length?
$('.table-sort').each(function(index) {
var rowCount = $("this tbody tr").length; //not work , Could you please correct this?
var rowCount1 = $(this).find('tbody > tr').length; //this is working fine
alert(rowCount + '-' + rowCount1);
})