JSFiddle - React, Tailwind, and code Playground
by Rahul Sharma
HTML
<tbody id="logBody">
<tr class="logArow"><td>Log Name</td><td>Log Information</td></tr>
</tbody>
JavaScript
$('.logArow').nextAll().each(function(){
console.log($(this).text());
});