Question:Consider the following code snippet:
$('#id1').animate({width:"240px"}, { queue:false, duration:1000 }).animate({height:"320px"}, "fast");The order of the animations of this code snippet is ___.
A First the width animation, then the height animation.
B First the height animation, then the width animation.
C Both the width animation and the height animation occur at the same time.
D The order of animations is random.
+ AnswerC
+ Report