Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Drop Down Menu Problem 1

Status
Not open for further replies.

manubassi

Programmer
Oct 17, 2002
2
IN
can anybody help me in the following case:
I am using a javascript dropdown menu made from Fireworks Software. Now this menu is supposed to come on top of everything in the page.I comes, in all the cases, but if the page includes a drop down list(Select box), then the menu is unable to come on top of this Select Box.Rther the select box comes on top of the Menu Items.
Can anybody help me how to handle this.
Thanx in advance.
 
Give the drop down box a name:
<select name=&quot;the_dropper&quot;>
and when the menu drops-down, add this:
document.getElementById('the_dropper').style.visibilty='none';
and when in un-drops:
document.getElementById('the_dropper').style.visibilty='';

Rick
 
Hi Rick,
Thanx for the suggestion. I will definately try this and let you know.
Bye.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top