Answers for "jquery table each rows with class"

0

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'));
});
Posted by: Guest on November-03-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language