JSFiddle - React, Tailwind, and code Playground

HTML

<table>
<tr>
    <td><input type="checkbox" value="0" /></td>
    <td>1</td>
    <td>John</td>
</tr>

<tr>
    <td><input type="checkbox" value="0" /></td>
    <td>2</td>
    <td>Julie</td>
</tr>
</table>

JavaScript

$(function(){
console.log('hi')
$('tr').each(function( index, element) {
      var $element = $(element),
          children = $element.children(),
          checkbox = children[0],
          id = $(children[1]).text(),
          name = $(children[2]).text();
    console.log(checkbox, name, id);
          
   });
});