Question: Which of the following returns the children tags of "id1"?
A
B
C
D
$('#id1').children();
B
$('#id1').getChildren();
C
children('#id1');
D
getChildren('#id1');
Note: Not available
$('#id1').animate({width:"240px"}, {queue:false, duration:1000 }).animate({height:"320px"}, "fast");The order of the animations of this code snippet is _____.
<font size=2> <ul id='id1'> <li id='li1'>Items 1</li> <li id='li2'>Items 2</li> <li id='li3'>Items 3</li> </ul> </font>Which of the following code snippets return(s) a set of all li tags within id1 except for the li tag with id li2?