Welcome Guest, Not a member yet? Register   Sign In
iterate through array for jQuery animations?.
#1

[eluser]umbungo[/eluser]
I am trying to do successive animations based on the contents of an array. Here is what i thought it should have been;
Code:
arr = [ "First", "Second", "Third", "Forth" ];
for(index in arr){
    $('#fade').fadeOut(2000, function(){
        $('#fade').html(arr[index]).fadeIn(2000);
    });
}
However this fades straight to 'fourth', presumably because it iterates through the array without waiting for the animations. What should i be doing instead?


Messages In This Thread
iterate through array for jQuery animations?. - by El Forum - 10-05-2011, 02:01 PM



Theme © iAndrew 2016 - Forum software by © MyBB