我有以下hoverIntent函数
$(".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");
}
);
我想在延迟/暂停可能超过500毫秒后执行function()..请帮助