JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<th>Month</th>
<th>Savings</th> </tr>
<tr>
<td>January</td>
<td>$100</td> </tr>
</table>
JavaScript
$(document).ready(function(){
var x=document.getElementsByTagName('td');
for(var i = 0; i < x.length; i++){
x[i].style.display ='none';
}
});