I have li boxes that make this jQuery call when an end user hovers on them with his cursor:
$('.boxgrid.slidedown').hover(function(){
$(".cover", this).stop().animate({top:'-150px'},{queue:false,duration:300});
}, function() {
$(".cover", this).stop().animate({top:'4px'},{queue:false,duration:300});
});
Now i want to wait half a second after the user points his cursor so i could stall the slidedown effect. if the mouse is still hovering then the slidedown will continue, if not then nothing should happen.
i tried using settimeout() without any luck. thank you.