Valentine's Day Gifts - Debt Consolidation - Debt Consolidation - Turquoise Rings - Internet Advertising

PDA

View Full Version : Help with debugging menu program


Navarone
Dec 4th 2007, 5:19 am
I have to fix a menu that was developed by another programmer and quiet truthfully I think the everything has been over-engineered. (IMHO)

http://dev-mactrailer-v2.virtualhorizons.com/index.aspx

What seems to be happening is as you rollover the menu options at the top and mouse into the menu options that drop down and just below the red bar at the top they sometimes appear or dissappear and are not very stable.

Thats the first problem, what I can't determine is if this is a java script issue or a css/div tag issue.

Any help greatly appreciated.:)

hrcerqueira
Dec 4th 2007, 7:21 am
I hadn't look closely to your code, but at a first glance it looks you do something like this:


If mouseover a header div
show the correspondent menu

If mouseout a header div
hide the correspondent menu

If mouseout a menu
hide it


and perhaps you should try something like:


If mouseover a header div
show the correspondent menu

If mouseout a header div
wait 100 milliseconds
then if mouse still out and not over the menu
hide the correspondent menu

If mouseout a menu
hide it


I hope that helps...