About
Explore
Events & Classes
Support Us
Join
Sign In
JUSTCodaborate
View Project Page
Run
Fullscreen
Modal like Alert!
HTML
CSS
JS
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <h2>Modal Example</h2> <!-- Trigger/Open The Modal --> <button id="myBtn">Open Modal</button> <!-- The Modal --> <div id="myModal" class="modal"> <!-- Modal content --> <div class="modal-content"> <h1>This page says...</h1> <p>Some text in the Modal..</p> <span class="close">OK</span> </div> </div> </body> </html>
body {font-family: Arial, Helvetica, sans-serif;} /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ left: 0; top: 0; text-align: center; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ } /* Modal Content */ .modal-content { background-color: #fefefe; margin: auto; height: 180px; overflow: auto; user-select: none; border-radius: 5px; border: 1px solid #888; max-width: 420px; } /* The Close Button */ .close { color: white; background-color: blue; float: right; margin-left: 5px; padding: 10px; font-size: 28px; font-weight: bold; } .close:hover, .close:focus { color: white; text-decoration: none; cursor: pointer; }
// Get the modal var modal = document.getElementById("myModal"); // Get the button that opens the modal var btn = document.getElementById("myBtn"); // Get the <span> element that closes the modal var span = document.getElementsByClassName("close")[0]; // When the user clicks the button, open the modal btn.onclick = function() { modal.style.display = "block"; } // When the user clicks on <span> (x), close the modal span.onclick = function() { modal.style.display = "none"; }