jquery table row find class code example
Example 1: 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'));
});
Example 2: jquery get value of td by class
$(".class").text();