JSFiddle - React, Tailwind, and code Playground
by jnfsmile
HTML
<table>
<tr class=cl>
<td width=300>a</td>
<td width=100>b</td>
</tr>
<tr class=tog>
<td colspan=2>abcdef Lorem Ipsmabcdef Lorem Ipsmabcdef Lorem Ipsmabcdef Lorem Ipsmabcdef Lorem Ipsmabcdef Lorem Ipsm</td>
</tr>
</table>
CSS
.tog {
display:none;
}
JavaScript
$(".cl").on("click", function() {
if ($(".tog").css("display") == "none")
$(".tog").css("display", "table-row");
else
$(".tog").css("display", "none");
});