Skip to content

Instantly share code, notes, and snippets.

@sanatem
Last active July 8, 2020 22:36
Show Gist options
  • Save sanatem/cbc119c8cddb71bfc6730e80b6422352 to your computer and use it in GitHub Desktop.
Save sanatem/cbc119c8cddb71bfc6730e80b6422352 to your computer and use it in GitHub Desktop.
Dynamically fill modals ver 2.
$(".modal-btn").click(function (event) {
// Get the modal
event.preventDefault();
modal = document.getElementById(event.target.closest("button").dataset.modal);
modal.style.display = "block";
});
// When the user clicks on (x), close the modal
$(".close").click(function (event) {
modal = event.target.closest(".modal");
modal.style.display = "none";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment