-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenubar.html
More file actions
27 lines (25 loc) · 760 Bytes
/
menubar.html
File metadata and controls
27 lines (25 loc) · 760 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- snowil -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<select name="" id="options" onchange="navigate(this)">
<option value="">Select the Link </option>
<option value="https://www.google.com">Google</option>
<option value="https://www.yahoo.com">Yahoo</option>
<option value="https://www.microsoftedge.com">Edge</option
</select>
<script>
function navigate(link){
page=link.options[link.selectedIndex].value
if (page!="") {
window.location=page
}
}
</script>
</body>
</html>