[jQuery] Re: hoverIntent not working?

2009-07-28 Thread Brett Ritter
On Tue, Jul 28, 2009 at 9:43 AM, Brian Cherne wrote: > So when you send it only one function (which .hover() seems to handle just > fine) hoverIntent thinks you're sending a configuration object. Try adding a I believe that's a fairly recent change to hover(). Prior behavior required 2 functions

[jQuery] Re: hoverIntent not working?

2009-07-28 Thread Mat
Ah, of course! Thanks a lot, I am very appreciative haha! Mat. On Jul 28, 2:43 pm, Brian Cherne wrote: > Sorry for taking so long to get back to you. Hopefully you've figured this > one out already... hoverIntent expects either two functions or one > configuration object: > $(foo).hoverIntent(

[jQuery] Re: hoverIntent not working?

2009-07-28 Thread Brian Cherne
Sorry for taking so long to get back to you. Hopefully you've figured this one out already... hoverIntent expects either two functions or one configuration object: $(foo).hoverIntent( function(){} , function(){} ); $(foo).hoverIntent( { over: function(){} , out: function(){} } ); So when you send