THE hoverintent plugin is the opposite of what I need. I have a .popup that is triggered by .trigger, when i hover off of it, i want .popup to NOT fadeout for a few seconds, but if I hover off, then hover on again, cancel the fadeout that was going to happen and keep the .popup open.
Does anyone know how I would do this?
This DOESN'T work, but it was an idea:
$('.trigger').hover(function(){
$('.popup').fadeIn(600)
}, function() {
$('.popup').delay(2000, function(){
if ($(this).blur() = true) {
$('.popup').fadeOut(600)
}
});
})
the jQuery HoverIntent plugin is exactly what your looking for.
The timeout property will set the amount of time the mouse needs to be OUT of the area before the out function is called.
Quote from the hover intent website:
To set it up...
Then define the functions to handle
over
andout
EDIT:
You can also adjust the
interval
property to increase/decrease the amount of time for the startHover function to fire...the default is set to 100 milliseconds...you can set it to zero to fire off the popup as soon as the mouse enters the trigger area if youd like.