up vote 0 down vote favorite
share [g+] share [fb]

In a list of links, I only want to activate the hover behavior for those links after the person is hovering over that link for a certain amount of time (say 1 second). So if they happen to just pass over the link (for less than one second) I don't want the hover event to occur.

Does anyone know how to do this or have any examples of this? Thanks!

link|improve this question
if it's an animation, use .stop() instead. api.jquery.com/stop – Sepehr Lajevardi Jun 22 '10 at 22:15
feedback

3 Answers

up vote 2 down vote accepted

Yes, There is a plugin for jQuery called hoverIntent that does what you describe.

link|improve this answer
Cor 10 secs quicker! – Dr. Frankenstein Jun 22 '10 at 22:17
Thanks Peter, this fixed my problem. – user373680 Jun 22 '10 at 22:28
feedback

I highly recomend using the hover intent jquery plugin for this. It's solved this problem for me before and seems to be very well written and light.

link|improve this answer
Thank you, this was very helpful! – user373680 Jun 22 '10 at 22:20
No worries, if this did the trick - tick @Peter Anselmo's as his was first. – Dr. Frankenstein Jun 22 '10 at 22:23
feedback

You can use delay in your hover chain:

http://api.jquery.com/delay/

There is also a plugin called "hoverIntent" which I would link you to if I was allowed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.