Modal JavaScript

PHOTO EMBED

Mon Feb 07 2022 13:16:18 GMT+0000 (Coordinated Universal Time)

Saved by @Shrushti

const openBtn = document.querySelector(".modal-open-btn");
const closeBtn = document.querySelector(".modal-close-btn");
var modal = document.querySelector(".modal-overlay");
function openModal() {
  modal.classList.add("display");
}
function closeModal() {
  modal.classList.remove("display");
}
openBtn.addEventListener("click", openModal);
closeBtn.addEventListener("click", closeModal);
content_copyCOPY