jQuery code to set the background color of all span elements to blue?
$(“span”).style(“background-color”,”blue”);
$(“span”).manipulate(“background-color”,”blue”);
$(“span”).css(“background-color”,”blue”);
$(“span”).layout(“background-color”,”blue”);
Correct Answer : C
var ps = $("p"); ps will be..
$(“span.intro”). What does it select?
$(“div#id1 .cl1?). What does it select?