I mean, is there any way to know if a column is hidden? i just learned to hide them with
$('#tableG td:nth-child('+(index+1)+'), #tableG th:nth-child('+(index+1)+')').hide();
but now i need to get the status, is there anything like:
if($('#tableG th:nth-child('+(index+1)+')').show() == true) { ... }
You want to use this kind of notation:
so: