Have you tried hover event? $("#nav1").hover(function(){},function()); $("#nav1").unbind('hover');
On Sep 5, 12:51 pm, Namlet <[EMAIL PROTECTED]> wrote: > To unbind the above example use: > $("#nav1").unbind('mouseenter mouseleave'); > > This is what the documentation says, but it doesn't remove the hover > event. Do I have to do something else? > > Thanks.