JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<td>do not select</td>
<td>select</td>
<td>select</td>
<td>select</td>
...
</tr>
</table>
JavaScript
alert($("table td:gt(0)").length);
<table>
<tr>
<td>do not select</td>
<td>select</td>
<td>select</td>
<td>select</td>
...
</tr>
</table>
alert($("table td:gt(0)").length);