Q. What is the code snippet to find all container elements with class “reveal”?
β
Correct Answer: (A)
var elements = document.getElementsByClassName("reveal");
Explanation: The above code snippet finds all container elements with class “reveal”.