Q. Which is the code that asks for the set of all div elements in a document?
β
Correct Answer: (C)
var divs = $("div");
Explanation: The code to ask for the set of all div elements in a document is