For a similar post a long time ago there seems to be issues with making table visibility hidden.
You have two options, one is to use the display:none
attribute.
Or two wrap the table in a div and make the div hidden.
<div id="wrapper" style="visibility:hidden">
<table>
<tr>
<td>
Content
</td>
</tr>
</table>
</div>