-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
46 lines (39 loc) · 1.39 KB
/
script.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
//script for my work section
var tablinks = document.getElementsByClassName("tab-links");
var tabcontents = document.getElementsByClassName("tab-contents");
function opentab(tabname) {
for (tablink of tablinks) {
tablink.classList.remove("active-link");
}
for (tabcontent of tabcontents) {
tabcontent.classList.remove("active-tab");
}
event.currentTarget.classList.add("active-link");
document.getElementById(tabname).classList.add("active-tab");
}
//script for hambudger
var sidemenu = document.getElementById("sidemenu");
function openmenu() {
sidemenu.style.right = "0";
}
function closemenu() {
sidemenu.style.right = "-200px";
}
// script for google excel sheet
const scriptURL =
"https://script.google.com/macros/s/AKfycbw50AhA9enVWR-4e2VJ_eKFUEYVp5RKHtzG0q43OpVVKlKf5QRPQDSHRP4HyOG-dydMhw/exec";
const form = document.getElementById("gform");
const msg = document.getElementById("msg");
form.addEventListener("submit", e => {
e.preventDefault();
fetch(scriptURL, { method: "POST", body: new FormData(form) })
.then(response => {
msg.innerHTML =
"Messeage sent successfully, Thank you for your kind response";
setTimeout(function () {
msg.innerHTML = "";
}, 5000);
form.reset();
})
.catch(error => console.error("Error!", error.message));
});