I want to delay 2 seconds before the anonymous function is called on the mouseenter event. Here is the code that is working perfectly but I want to delay the initial animation or hover by 2 seconds and can't seem to figure it out.
$('div#response div.results').live({
mouseenter: function() {
$(this).find('.zoomer').stop('true').css({
'z-index': '999'
}).animate({
"overflow": 'visible',
backgroundColor: '#fff',
'width': '274px'
}, {
duration: 100,
easing: 'easeOutExpo',
queue: false
});
$(this).find('img').stop('true').animate({
"height": "180px",
"width": "270px"
}, {
duration: 1,
easing: 'linear',
queue: false
});
},
mouseleave: function() {
$(this).find('.zoomer').stop('true').animate({
"overflow": 'visible',
backgroundColor: '#f7f7f7',
'width': '164px'
}, {
duration: 10,
easing: 'linear',
queue: false
});
$(this).find('img').stop('true').animate({
"height": "108px",
"width": "162px"
}, {
duration: 1,
easing: 'easeOutCirc',
queue: false
})
}
});