Hi All,
I was wondering how I can get this piece of code to stop execution while I'm hovering over '.child'? Here is the code I'm working with, see below:
$('.child').live('mouseleave', function(){
$('.child').delay(2300).fadeOut(200);
$(this).removeClass('child');
});
Much Appreciated. Thanks