Hello.
I have a form in my website that I want to hide at page load. But after the page load, there remains empty space. The form is inside the table. So, I tried resizing table with following code. But its not working.
<script type="text/javascript">
function HideForm()
{
document.getElementById('emf-form').style.visibility='hidden';
document.getElementById('page2').style.height='200px';
}
</script>