hoverintent function with a delay
I have the following hoverIntent function
$(".samplePepleCon").hover(function()
{
var getId = $(this).attr('id');
var getCompleteID = 'DataInside_'+getId;
$(this).find(".presTips").delay(800).fadeIn(1000);
}, function()
{
$(this).find(".presTips").fadeOut("fast");
}
开发者_运维技巧 );
I want the function() to be executed after a delay/pause of maybe 500ms.. Please help
It sounds like you're looking for the hoverIntent plugin.
精彩评论