So I am trying to hide a DIV that sits inside a td. Issue I am facing is that the attached code fades the div perfect fine but the table space stays there. How do I make this table space disappear completely?
Table:
<table width="100%" id="myTabDiv"><tr><td align="center"><div id="innerDiv"> This disappears </div></td> </tr>
</table>
Just to clarify, the solution was to wrap the table in another div and hide that div instead.