forked from DeepaRaj123/farbe_admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourse.js
41 lines (36 loc) · 1.63 KB
/
course.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
// Get the modal
var modal = document.getElementById("myModal");
// Get the button that opens the modal
var btn = document.getElementById("button1");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
document.getElementById("registration-info").value=""
document.getElementById("registration-name").value=""
document.getElementById("registration-number").value=""
document.getElementById("registration-course").value=""
document.getElementById("registration-job").value=""
document.getElementById("registration-teacher").value=""
document.getElementById("registration-classes").value=""
document.getElementById("registration-teachername1").value=""
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
document.getElementById("registration-info").value=""
document.getElementById("registration-name").value=""
document.getElementById("registration-number").value=""
document.getElementById("registration-course").value=""
document.getElementById("registration-job").value=""
document.getElementById("registration-teacher").value=""
document.getElementById("registration-classes").value=""
document.getElementById("registration-teachername1").value=""
}
}