-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
21 lines (20 loc) · 1017 Bytes
/
Copy pathscript.js
File metadata and controls
21 lines (20 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function showDiv() {
var selectValue = document.getElementById("mySelect").value;
if (selectValue === "default") {
document.getElementById("option1Div").style.display = "none";
document.getElementById("option2Div").style.display = "none";
document.getElementById("option3Div").style.display = "none";
} else if (selectValue === "option1") {
document.getElementById("option1Div").style.display = "block";
document.getElementById("option2Div").style.display = "none";
document.getElementById("option3Div").style.display = "none";
} else if (selectValue === "option2") {
document.getElementById("option1Div").style.display = "none";
document.getElementById("option2Div").style.display = "block";
document.getElementById("option3Div").style.display = "none";
} else if (selectValue === "option3") {
document.getElementById("option1Div").style.display = "none";
document.getElementById("option2Div").style.display = "none";
document.getElementById("option3Div").style.display = "block";
}
}