KingRichard3
Programmer
I have these two little routines:
that I'm calling. The problem is that when I call the [tt]HideCancelMenu[/tt] function, although the "CancelMenu" is, in fact, hidden - i.e. it's not visible - but it still takes up space, and throws my page off center, etc.
How can I truly hide it?
Thanks so much,
Rick
Code:
function ShowCancelMenu()
{
var CancelMenu
CancelMenu = document.getElementById('CancelMenu')
CancelMenu.style.visibility = ''
}
function HideCancelMenu()
{
var CancelMenu
CancelMenu = document.getElementById('CancelMenu')
CancelMenu.style.visibility = 'hidden'
}
How can I truly hide it?
Thanks so much,
Rick