[jQuery] Re: .unbind hover doesn't work

2008-09-06 Thread Joel Birch
2008/9/6 Karl Rudd <[EMAIL PROTECTED]>: > > Nope, it's space separated. I know, it's unexpected, it caught me off > guard as well. Okay, wow - thanks so much for correcting me on this Karl. [Rushes off to check existing code...] Joel Birch.

[jQuery] Re: .unbind hover doesn't work

2008-09-06 Thread Karl Rudd
Nope, it's space separated. I know, it's unexpected, it caught me off guard as well. Karl Rudd On Sat, Sep 6, 2008 at 5:07 PM, Joel Birch <[EMAIL PROTECTED]> wrote: > >> On Sep 5, 12:51 pm, Namlet <[EMAIL PROTECTED]> wrote: >>> $("#nav1").unbind('mouseenter mouseleave'); > > Also, I think the sy

[jQuery] Re: .unbind hover doesn't work

2008-09-06 Thread Joel Birch
> On Sep 5, 12:51 pm, Namlet <[EMAIL PROTECTED]> wrote: >> $("#nav1").unbind('mouseenter mouseleave'); Also, I think the syntax requires a comma-separated list of events, not space-separated. Joel Birch.

[jQuery] Re: .unbind hover doesn't work

2008-09-05 Thread FrenchiINLA
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