1. A jQuery object
2. An array
3. A linked list
4. A hash or dictionary
A jQuery object
1. The first span element with class=”intro”
2. The first span element with id=”intro”
3. All span elements with id=”intro”
4. All span elements with class=”intro”
All span elements with class=”intro”
1. The first element with id=”cl1 inside any div element with class=”id1?
2. All elements with class=”cl1? inside the first div element with id=”id1?
3. All div elements with id=”id1? or class=”cl1?
All elements with class=”cl1? inside the first div element with id=”id1?
1. $("span").style("background-color","blue");
2. $("span").manipulate("background-color","blue");
3. $("span").css("background-color","blue");
4. $("span").layout("background-color","blue");
$("span").css("background-color","blue");
1. document.write("Hello World")
2. response.write("Hello World")
3. ("Hello World")
4. None of the above
document.write("Hello World")