I am trying to set an interval in an each loop using jQuery. I thought the following may work, but no such luck:
menuSlide = $(this).animate({
left: '250px'
}, 50, function() {
});
var slideIn = function() {
$('._jsNav').each(function(){
setTimeout(function(menuSlide) {
}, 200);
});
}
$('._jsStage').mouseenter(slideIn);
Anyone who could let me know what's wrong with it? Or if I am approaching it incorrectly?
Thanks!