I have a ul and I would like to animate each li in descending order, and I'm having no luck on this.
my current code it,
function menuItemsIn(){
$(".ac_menu ul li").each(function(){
$(this).animate({marginTop : '0px', opacity : '100'}, {duration : 'slow', easing : 'easeInBack'}).delay(200);
});
}
It animating all the li's together, and what I want it to do is. Animate one li, then the next, and so on.
Any help would be nice.
Thanks
-BaSk