showing results for - "jquery table each rows with class"
Lina
16 Mar 2016
1// I have a table (#tbLog) and rows (tr) contain class record.
2
3$('#tbLog').find('tr.record').each(function(){
4  console.log('Row with class',$(this).attr('class'));
5});