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 it only one function (which .hover() seems to handle just
fine) hoverIntent thinks you're sending a configuration object. Try adding a
second function:

$('#trigger').hoverIntent(function(){$('#info').slideDown('500')} ,
function(){} );

Good luck,
Brian.

On Mon, Jul 27, 2009 at 6:17 PM, Mat <matthew_hil...@hotmail.com> wrote:

>
> Here is my simple bit of JS that isn't working;
>
> $('#trigger').hoverIntent(function(){$('#info').slideDown('500')});
>
> Maybe it is conflicting with the other plugins I am using; scrollTo,
> localScroll and serialScroll? (I don't see why it would.)
>
> Thanks in advance, Mat.
>

Reply via email to