-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
43 lines (43 loc) · 1.16 KB
/
menu.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>VIM DDR MENU</title>
<link rel="stylesheet" type="text/css" href="whitrabt.css">
<link rel="stylesheet" type="text/css" href="menu.css">
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
</head>
<body>
<div id="container">
<h1>VIM-DDR Menu Page</h1>
<form action="#">
<fieldset>
<label for="songname">Select a song</label>
<select name="songname" id="songname">
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
</select>
</fieldset>
</form>
<script type="text/javascript" src="js/jquery-1.7.1.js"></script>
<script src="js/menu.js"></script>
<script>
$(function() {
$( "#songname" )
.selectmenu()
.selectmenu( "menuWidget" )
.addClass( "overflow" );
});
</script>
</div>
</body>
</html>