JSFiddle - React, Tailwind, and code Playground
by kman007_us
HTML
<table>
<tr><td>foobar</td></tr>
<tr id='foo'><td>asdfasdf</td></tr>
</table>
<button id='aaa'>
click me
</button>
CoffeeScript
$('#aaa').click ->
$('#foo').toggle
by kman007_us
<table>
<tr><td>foobar</td></tr>
<tr id='foo'><td>asdfasdf</td></tr>
</table>
<button id='aaa'>
click me
</button>
$('#aaa').click ->
$('#foo').toggle