Help Me

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
jayaraj
Beginner
Beginner
Posts: 1
Joined: Thu Mar 30, 2006 12:39 pm
Contact:

Help Me

Post by jayaraj »

I am using the following function to show and hide menu while clicking the button. Its working fine in IE. But in Netscape7.2, its not working properly.

CODE:

function showMenu()
{
if(sMenuStatus=="hide")
{

MM_showHideLayers('divezMenuLayer','','show')
sMenuStatus="show"
menuName = 'MainMenu';
menuNum = getMenuByName(menuName);
menuDisplay(menuNum,1);
myMenu = gmobj("menu"+getMenuByName("MainMenu"))
spos(myMenu, 47, null, null, null);

}
else
{
MM_showHideLayers('divezMenuLayer','','hide')
sMenuStatus="hide"
menuName = 'MainMenu';
menuNum = getMenuByName(menuName);
menuDisplay(menuNum,0);
myMenu = gmobj("menu"+getMenuByName("MainMenu"))
spos(myMenu, -100, null, null, null);

}


}
User avatar
Ruth
 Team
 Team
Posts: 8763
Joined: Thu May 15, 2003 5:02 am
Location: Yucaipa, CA
Contact:

Post by Ruth »

Hello,

Can you please provide a test page with this? I can try and see what's going on, but I don't do js so I need to have the page with all this on it.

Ruth
Post Reply