I have a table like this:
<table id="mi_tabla">
<tr>
<th></th>
<th style="display: none;"></th>
<th></th>
<th></th>
</tr>
<tr>
<td></td>
<td style="display: none;"></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td style="display: none;"></td>
<td></td>
<td></td>
</tr>
</table>
and I want to remove those columns that have display none, how can I do it?
Thanks !!