JSFiddle - React, Tailwind, and code Playground
by jairajdesai
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<table>
<th>Heading Shown</th>
<th class='hide'>Heading Hidden</th>
</table>
JavaScript
$(document).ready(function(){
$('.hide').css('display','none');
console.log($('.hide')[0].clientWidth);
});