Quiz: Move Things Around
Test your knowledge of hiding, showing, and animating elements on a web page using JavaScript. This quiz helps reinforce your understanding of dynamic DOM manipulation and prepares you for the upcoming mini-project by applying what you've learned so far.
We'll cover the following...
We'll cover the following...
...
Technical Quiz
1.
To make an element (<p id="msg">) visible after it was hidden with display = "none", what should you set element.style.display to?
A.
"visible"
B.
"show"
C.
"block" or "inline" (or its original value)
D.
"" (An empty string)
1 / 3
...