-
Notifications
You must be signed in to change notification settings - Fork 0
rezmehp edited this page Jan 27, 2020
·
6 revisions
var modal = document.getElementById("myModal");
span.onclick = function() {
modal.style.display = "none";
}
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
https://codepen.io/codingandstuff/pen/rNNNzyW https://github.com/DaftCreation/Custom-Audio-Player