Hi all,
I am using Asp.net menu control, how can I delay the showing of sub menu items ?
The menu is handled by Menu_HoverDynamic javascript function. I am trying to settimeout this function. But the problem is the sub menu
are shown and the root menu is getting hidden ?
Thanks in advanceCode:var OriginalMenu_HoverDynamic=Menu_HoverDynamic; Menu_HoverDynamic = function(t) { sendingCel = t; setTimeout('OriginalMenu_HoverDynamic(sendingCel)',1000); };




Reply With Quote