Sure. After implementing the above changes, edit the line:
Code:
setTimeout(function(){tabdropdown.dropit(menuitem, event, menuitem.getAttribute("rel"))}, 500)
to:
Code:
tabdropdown.delayshow=setTimeout(function(){tabdropdown.dropit(menuitem, event, menuitem.getAttribute("rel"))}, 500)
Then find the below new line inside the script, and add to it the line in red:
Code:
delayhidemenu:function(obj2){
clearTimeout(this.delayshow)
This should do it, provided you've set the below line to 0:
Code:
disappeardelay: 0, //set delay in miliseconds before menu disappears onmouseout
Bookmarks