[jQuery] Re: Mouseleave event

2009-06-02 Thread zayatzz
Thanks for the info This mouseintent is quite cool script. I did just what you suggested - i just removed the extra 2 seconds timeout and used config from the example instead. Thanks again. Alan On Jun 2, 9:41 pm, Gustavo Salomé wrote: > Check out this > plugin:http://cherne.net/brian/resou

[jQuery] Re: Mouseleave event

2009-06-02 Thread Gustavo Salomé
Check out this plugin: http://cherne.net/brian/resources/jquery.hoverIntent.html It may help you. Instead of mouseenter and leave do $('object').hoverIntent(function(){ $("ul.LvlTwo").slideToggle('medium'); },function(){ setTimeout(functi

[jQuery] Re: Mouseleave event

2009-06-02 Thread zayatzz
Thanks. I did that: $(document).ready(function () { $("ul.LvlOne li:has(ul)").bind("mouseenter",function(event){ $("ul.LvlTwo").slideToggle('medium'); }); $("ul.LvlOn

[jQuery] Re: Mouseleave event

2009-06-02 Thread Gustavo Salomé
Try the setTimeout function 2009/6/2 zayatzz > > Hello > > Is it possible to mouseleave event have some kind of delay inserted > into it? > > I have this small script, which is working just fine : > > >$(document).ready(function () { >$("ul.LvlOne