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 <w...@wolfsworld1.com> wrote: > I am new to this. I want to animate the menu 'height' on mouseout (it > works fine on mouseover) - basically a slide up/slide-down effect. How > would I go upon that?