What Is The Correct JQuery Code For Making All Div Elements 100 Pixels High?
$("div").height(100)
$("div").yPos(100)
$("div").height="100"
Correct Answer : A
jQuery code to set the background color of all span elements to blue?
var ps = $("p"); ps will be..
$(“span.intro”). What does it select?