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