JSFiddle - React, Tailwind, and code Playground

by thelgevold

HTML

<body>
<table>
<tr id='someTr'>
</tr>
</table>
</body>

JavaScript

var cell = document.createElement('td');
cell.style.height="50px";
 
document.getElementById('someTr').appendChild(cell);

document.getElementsByTagName('td')[0].innerHTML = "Some Text";