Created
October 23, 2020 22:23
-
-
Save mattlockyer/f9ff385ea3aded9452fe54c5f37bce9a to your computer and use it in GitHub Desktop.
Quick Modal for Developer Console
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
modal = document.createElement('div') | |
modal.innerHTML = '<span id="close-modal">x</span>' | |
style = modal.style | |
modal.style.zIndex = 1000 | |
modal.style.width = modal.style.height = '90%' | |
modal.style.background = 'white' | |
modal.style.position = 'absolute' | |
modal.style.top = modal.style.left = '5%' | |
modal.style.padding = '16px' | |
document.body.appendChild(modal) | |
document.getElementById('close-modal').onclick = () => document.body.removeChild(modal) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment