Monday, 18 October 2021

Catalog

 


// Get the modal

var modal = document.getElementById("myModal");


// Get the <span> element that closes the modal

var span = document.getElementsByClassName("close")[0];


// When the user clicks the button, open the modal 

b1.onload = function() {

  modal.style.display = "block";

  document.getElementById("urlid1").href="https://docs.google.com/forms/d/e/1FAIpQLSfQ6rZl7kU1t1vGqmSmBpfxqWXCBwBUZudaru_tsZfrsJ5r8w/viewform";

  document.getElementById("urlid2").href="https://docs.google.com/forms/d/e/1FAIpQLSfQ6rZl7kU1t1vGqmSmBpfxqWXCBwBUZudaru_tsZfrsJ5r8w/viewform";

  document.getElementById("urlid3").href="https://docs.google.com/forms/d/e/1FAIpQLSfQ6rZl7kU1t1vGqmSmBpfxqWXCBwBUZudaru_tsZfrsJ5r8w/viewform";

  document.getElementById("urlid4").href="https://docs.google.com/forms/d/e/1FAIpQLSfQ6rZl7kU1t1vGqmSmBpfxqWXCBwBUZudaru_tsZfrsJ5r8w/viewform";

  document.getElementById("urlid5").href="https://docs.google.com/forms/d/e/1FAIpQLSfQ6rZl7kU1t1vGqmSmBpfxqWXCBwBUZudaru_tsZfrsJ5r8w/viewform";

  document.getElementById("urlid6").href="https://docs.google.com/forms/d/e/1FAIpQLSfQ6rZl7kU1t1vGqmSmBpfxqWXCBwBUZudaru_tsZfrsJ5r8w/viewform";

}


// When the user clicks on <span> (x), close the modal

span.onclick = function() {

  modal.style.display = "none";

}


// When the user clicks anywhere outside of the modal, close it

window.onclick = function(event) {

  if (event.target == modal) {

    modal.style.display = "none";

  }

}