winterjeferson respondeu ao tópico de henriquers em Javascript
Nesta linha, você está referenciando todos os elementos TD / TH de qualquer tabela:
$('td:nth-child(1),th:nth-child(1)').hide();
Experimente mudar por
$("#tabela_cons").find('td:nth-child(1),th:nth-child(1)').hide();