[jQuery] Re: Animate menu effect on mouseout

2009-08-16 Thread Wolf
Thanks Charlie - I appreciate! On Aug 16, 10:05 am, Charlie wrote: > I don't have a solution for you and would have to tinker quite a bit to get > a  cross browser solution but if you look at the master hover function, it > uses "over" and "out" functions , and all hiding seems to be done in

[jQuery] Re: Animate menu effect on mouseout

2009-08-16 Thread Charlie
I don't have a solution for you and would have to tinker quite a bit to get a  cross browser solution but if you look at the master hover function, it uses "over" and "out" functions , and all hiding seems to be done in hideSuperfishUl so you are on right track Wolf wrote: This is related

[jQuery] Re: Animate menu effect on mouseout

2009-08-16 Thread Wolf
This is related to an earlier question I posted ('Superfish - animate effect"). So, yes Charlie - the 'menu' is a plugin and I am now trying to write some code to make it animate (slideup) on mousout. I understand from you previous reply that I would have to write a new function into Superfish

[jQuery] Re: Animate menu effect on mouseout

2009-08-16 Thread Charlie
I suspect "the menu" is a plugin? If so,  will depend on how the plugin is designed sundowatch wrote: mouseout is an event what works when mouse get out from an object. You can do it like this: $("#menu").mouseout(function(){ $(this).slideDown("normal"); }); On 15 Ağustos, 17:32, Wolf wr

[jQuery] Re: Animate menu effect on mouseout

2009-08-16 Thread sundowatch
mouseout is an event what works when mouse get out from an object. You can do it like this: $("#menu").mouseout(function(){ $(this).slideDown("normal"); }); On 15 Ağustos, 17:32, Wolf wrote: > I am new to this. I want to animate the menu 'height' on mouseout (it > works fine on mouseover) - basi