forked from QAZIMAAZARSHAD/Voters-Registration-Portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
66 lines (62 loc) · 1.99 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
var modal = document.getElementById("myModal");
var btn = document.getElementById("myBtn");
var span = document.getElementsByClassName("close")[0];
btn.onclick = function() {
modal.style.display = "block";
}
span.onclick = function() {
modal.style.display = "none";
}
//
// alert(<div id="myModal" class="modal" style="width:84%;">
//
// <div class="modal-content">
// <span class="close">×</span>
// <h4 class="head1">List of Acceptable Supporting Documents For Verification</h4>
//
// <p><ol class="ol">
// <li>Recent passport size photographs</li>
// <li>Address proof (any one of the following)</li>
// <ul class="ul">
// <li>Copy of your Passport</li>
// <li>Gas bill</li>
// <li>Water bill</li>
// <li>Ration Card</li>
// <li>Bank Passbook</li>
// <li>Aadhaar Card</li>
// </ul>
// <li>Copy of proof of age</li>
// <ul class="ul">
// <li>10th Standard Certificate</li>
// <li>Birth Certificate</li>
// <li>Pan Card</li>
// <li>Aadhaar Card</li>
// <li>Driving Licence</li>
// <li>Copy of Passport</li>
// <li>Kisan Card</li>
// </ul class="ul">
// <li>Identity proof (any one of the following)</li>
// <ul class="ul">
// <li>Pan Card</li>
// <li>Driving Licence</li>
// <li>Ration Card</li>
// <li>Passport Copy</li>
// <li>Bank Passbook with Photograph</li>
// <li>SSLC Certificate</li>
// <li>Student ID Card</li>
// <li>Aadhaar Card</li>
// </ul>
//
// </ol></p>
// </div>
//
// </div>);
// window.onclick = function(event) {
// if (event.target == modal) {
// modal.style.display = "block";
// }
// }
//
// function modal(){
// document.getElementById('myModal').style.display="none";
// }