JQuery code to set the background color of all “<span>” in blue?
1.$("span").style("background-color", "blue");
2.$("span").css("background-color", "blue");
3.jQuery("span").style("background-color", "blue");
4.none of the above
Answer:4