-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
executable file
·45 lines (38 loc) · 1.09 KB
/
main.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
fetch("./menu.html")
.then(response => {
return response.text()
})
.then(data => {
document.querySelector("menu").innerHTML = data;
});
fetch("./footer.html")
.then(response => {
return response.text()
})
.then(data => {
document.querySelector("footer").innerHTML = data;
});
var Bibliografia_B = document.getElementById('bibliografia_B');
Bibliografia_B.addEventListener("click", MOSTRAR_BIBLIOGRAFIA);
function MOSTRAR_BIBLIOGRAFIA() {
var Bibliografia_Var = document.getElementById('bibliografia');
console.log(Bibliografia_Var.style.display);
if (Bibliografia_Var.style.display == 'none') {
Bibliografia_Var.style.display = 'block';
}
else {
Bibliografia_Var.style.display = 'none';
}
}
var Videos_B = document.getElementById('videos_B');
Videos_B.addEventListener("click", MOSTRAR_VIDEOS);
function MOSTRAR_VIDEOS() {
var Videos_Var = document.getElementById('videos');
console.log(Videos_Var.style.display);
if (Videos_Var.style.display == 'none') {
Videos_Var.style.display = 'block';
}
else {
Videos_Var.style.display = 'none';
}
}