Forum Moderators: open

Message Too Old, No Replies

Problem with IE - not displaying "show Menu" properly when clicked

         

vinayy

9:34 am on Jan 3, 2008 (gmt 0)

10+ Year Member



Hi to ever body

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

Trace

4:48 pm on Jan 3, 2008 (gmt 0)

10+ Year Member



I'm guessing that "show Menu" is a JavaScript function that displays your menu.

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.