Posts: 13
Location: Sydney Australia
|
you need to use the setTimeout and clearTimeout functions to get this working well. also try calling the same function when your mouse hovers over the dropdowner as well dropdownee.
it's a good idea to have a function that hides ALL your dropdowns first then you turn on the menu you want after that.
sorta like this:
function hideMenus(){
//this hides them all maybe with an array loop
}
function turnOn(menu){
//this turns one on
}
then onmouseover="hideMenus(); turnOn(something);"
this will work without flicker in most cases.
Last edited by rimian : 05-24-2005 at 08:51 AM.
|