Forum Moderators: open
I have link called "show Menu" when i click on this link group of menu item's will display. Below the link i have on form with 5 fields. There is no problem in Firefox i see the menu item clearly. But in IE all the menu item's will display back of the form fields. How can i rectify this issue.
Any one help please.
thanks
Modify that JavaScript so that before it displays the menu, it hides the form elements.
Should roughly look something like this;
function showMenu(){document.getElementById('textbox1').style.visibility = 'hidden';
// ********************************************
// here goes your code that displays your menu
// ********************************************}
Then reset the visibility to "visible" when you hide the menu.