I'm trying to recreate an animation (some div sliding) N times, one right after the previous animation.
So far I've got this:
n_times = index;
for (var i = 0; i < n_times; i++) {
$(".left").click();
}
and, that click event triggers:
$(".left").click(function (e) {
e.preventDefault();
index--;
column_n--;
var total = parseInt($('#slides').css('margin-left').split('px')[0]) + 1150;
$('#slides').stop().animate({ marginLeft: total + 'px' }, 850);
});
However, my first for loop does not wait for each animation to end to start the next call.
How can achive this?
