JSFiddle - React, Tailwind, and code Playground

by TheDiamondDoge

HTML

<table>
<tr>
  <td class = "target">0</td>
  <td class = "target">1</td>
  <td class = "target">2</td>
</tr>
</table>

JavaScript

$(function(){
	alert($(".target").eq(2).html());
});