Artifact 6530096b9d2239a3116feafe22861b48697e3b75:
- File cgisetup/js/pjhatwal-modal.js — part of check-in [23abe1e5af] at 2017-04-05 17:51:56 on branch v1.64-envdebug — merged with pjhatwal1.64 (user: pjhatwal, size: 390) [annotate] [blame] [check-ins using] [more...]
$(document).ready(function(){ $(".viewmodal").click(function(){ var modal = document.getElementById("myModal" + this.id); // alert(this.id); modal.style.display = "block"; }); $(".close").click(function(){ var modal = document.getElementById("myModal" + this.id); // alert(this.id); modal.style.display = "none"; }); });