Erlendftw

Untitled

Aug 18th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Get the modal
  2. var modal = document.getElementById('id01');
  3. var modals = ['id01', 'id02', 'id03', 'id04', 'id05', 'id06', 'id07', 'id08', 'id09', 'id10', 'id11', 'id12', 'id13'];
  4. var modalsObj = [];
  5. for (var modal in modals) {
  6.     modalsObj.push(document.getElementById(modal));
  7. }
  8.  
  9. // When the user clicks anywhere outside of the modal, close it
  10. window.onclick = function(event) {
  11.  
  12.     var foundModal = modalsObj.find(event.target);
  13.     if (foundModal != undefined) {
  14.         foundModal.style.display = "none";
  15.     }
  16.  
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment