I am using display:none with using Table. When show the onClick using javascript. Then it will show, again i will hide, content only hidden, but that table doesn't hide.
Code:
<script> function tableHide() { var tableID = document.getElementById("TableID"); if (tableID.style.display=="none") { tableID.style.display="block"; } else { tableID.style.display="none" ; } } </script> <table id="TableID" style="display:none"> ..... .... ... </table>
Comment