JSFiddle - React, Tailwind, and code Playground

HTML

<table id="playsql-0" class="playsql tablesorter" data-uid="0" data-query-editor-url="/confluence/playsql-base-plugin/query-editor.action?key=PDOQA&amp;queryId=35">
<tbody class="">
<tr id="playsql-0-7" data-row-id="7">
<th class="id-column" data-position="7" data-row-id="7">7</th>                                                                                                
<td class="data-cell" data-editor-value="19502">19502</td>
<td class="data-cell" data-editor-value="7">7</td>
<td class="data-cell" data-editor-value="Service Availibility">Service Availibility</td>
<td class="data-cell" data-editor-value="dtmemutlu">dtmemutlu</td>
<td class="data-cell" data-editor-value="Completed">Completed</td>
<td class="data-cell" data-editor-value="Interruptive Work">Interruptive Work</td>
<td class="data-cell" data-editor-value="Planned">Planned</td>
<td class="data-cell" data-editor-value="Minor">Minor</td>
<td class="data-cell" data-editor-value="2014-07-16 07:00:00">2014-07-16 07:00:00</td>
<td class="data-cell" data-editor-value="2014-07-16 07:50:00">2014-07-16 07:50:00</td>
<td class="data-cell" data-editor-value="2014-07-16 07:00:00">2014-07-16 07:00:00</td>
<td class="data-cell" data-editor-value="2014-07-16 07:45:00">2014-07-16 07:45:00</td>
<td class="data-cell" data-editor-value="CRM">CRM</td>
<td class="data-cell" data-editor-value="nul"><span class="not-a-value">-</span></td>
<td class="data-cell" data-editor-value="nul"><span class="not-a-value">-</span></td>
<td class="data-cell" data-editor-value="45">45</td>
</tr><tr id="playsql-0-5" data-row-id="5">
<th class="id-column" data-position="5" data-row-id="5">5</th>
<td class="data-cell" data-editor-value="19503">19503</td>
<td class="data-cell" data-editor-value="8">8</td>
<td class="data-cell" data-editor-value="Service Availibility">Service Availibility</td>
<td class="data-cell" data-editor-value="dtmemutlu">dtmemutlu</td>
<td class="data-cell" data-editor-value="Completed">Completed</td>
<td...

JavaScript

$("table tr").each(function(){
     var currentTr = $(this).children()
     var productTd = currentTr[13];
     console.log($(productTd).attr("data-editor-value"));
});