Quiz: Move Things Around
Test your understanding of JavaScript techniques for hiding, showing, and animating page elements. This lesson helps you review key concepts on DOM manipulation and user interactions, preparing you to apply these skills in a mini-project next.
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
...