-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavascript.js
More file actions
20 lines (20 loc) · 810 Bytes
/
Copy pathjavascript.js
File metadata and controls
20 lines (20 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
window.onload = function(){
document.getElementById("fade").style.display = "none";
document.getElementById("popupMail").style.display = "none";
document.getElementById("body").style.overflow = "auto";
}
var zaehler = 0;
function popupMail() {
if (zaehler == 0){
$('html,body').scrollTop(0);
document.getElementById("fade").style.display = "block";
document.getElementById("popupMail").style.display = "block";
document.getElementById("body").style.overflow = "hidden";
zaehler++;
} else if (zaehler == 1){
document.getElementById("fade").style.display = "none";
document.getElementById("popupMail").style.display = "none";
document.getElementById("body").style.overflow = "auto";
zaehler--;
}
}