JSFiddle - React, Tailwind, and code Playground
by mcotton
HTML
<table border=3>
<tr>
<td id="one">one</td>
<td id="two">two</td>
<td id="three">three</td>
</tr>
</table>
JavaScript
$('#one').click(function() { $(this).html('ONE') } )
$('#two').click(function() { $(this).html('TWO') } )
$('#three').click(function() { $(this).html('THREE') } )