scrimba
Frontend Career Path
Essential JavaScript concepts
Cookie Consent
Make the modal reappear
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Make the modal reappear
Expand for more info
index.js
run
preview
console
/*
Challenge:
1. Take control of the 'modal' div with JavaScript.
2. Swap out our console.log for a line of code
which will change the CSS 'display' property
of our modal to 'inline'.
*/

setTimeout(function(){
console.log('Modal Opened!')
}, 1500)
Console
"Modal Opened!"
,
/index.html
-2:11