Skip to content

Instantly share code, notes, and snippets.

View LucasAndrad's full-sized avatar

Lucas Andrade Oliveira LucasAndrad

View GitHub Profile
@LucasAndrad
LucasAndrad / generic_modal.js
Last active October 13, 2018 22:11
js code of generic modal
function openModal() {
var modal = document.getElementById('gmModal');
modal.style.display = "block";
}
function closeModal() {
var modal = document.getElementById('gmModal');
modal.style.display = "none";
}
window.onclick = function(event) {
var modal = document.getElementById('gmModal');