To explain my question I have created this http://jsfiddle.net/Jams/XNVB2/ here I want when div1 complete its 25% animation then div2 should start its animation and when div1 complete its 50% animation then div3 should start its animation.
Here is jquery code
$("#div1").animate({width:400},2000);
$("#div2").animate({width:400},2000);
$("#div3").animate({width:400},2000);
This should work: http://jsfiddle.net/XNVB2/1/
Alternately, you could also do this with
queue: http://jsfiddle.net/XNVB2/2/