JSFiddle - React, Tailwind, and code Playground
by pravinnavle
HTML
<table id="table">
<tr class="row1">
<th>value</th>
<th>value</th>
<th>value</th>
</tr>
<tr class="row2">
<th>value</th>
<th>test</th>
<th>value</th>
</tr>
<tr class="row3">
<th>value</th>
<th>value</th>
<th>value</th>
</tr>
</table>
JavaScript
var Row = document.getElementById("table");
var Cells = Row.getElementsByTagName("th");
alert(Cells.text("test").innerText);