snexjuxciqnidwetv
New Member
I've already found a solution using {queue: true}, but the problem is that this doesn't seem to work in my case.I've created a fiddle to help you understand my problem: http://jsfiddle.net/c6SS9/1/.jQuery Code:\[code\]$(function() { for(var i=0; i < $('.block').size(); i++) { $('.block').eq(i).delay(i*200).animate({'left': '300px'}, 700); $('.block').eq(i).delay(i*200).animate({'opacity': '1'}, {queue: false, duration: 1000}); }});?\[/code\]What i want is that the animation used for the opacity starts when the block start to move and this has to happen for each block.