-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·44 lines (40 loc) · 1.29 KB
/
index.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
44
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="stylesheet" href="http://harvesthq.github.com/chosen/chosen/chosen.css" />
<title>Ticket to Rank (the Beatles)</title>
<style>
h1 { font-size: 18px; }
select { width: 200px; }
div { margin: 0 0 .5em; }
</style>
</head>
<body>
<header>
</header>
<h1>Rank the Beatles!</h1>
<div>
<select id="beatle1" class="chosen" data-placeholder="The Best Beatle" >
<option></option>
<option>George Harrison</option>
<option>John Lennon</option>
<option>Paul McCartney</option>
<option>Ringo Starr</option>
</select>
</div>
<div>
<select id="beatle2" class="chosen" data-placeholder="The Next Best Beatle" ></select>
</div>
<div>
<select id="beatle3" class="chosen" data-placeholder="Not the Worst Beatle" ></select>
</div>
<div>
<select id="beatle4" class="chosen" data-placeholder="The Worst Beatle" ></select>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://harvesthq.github.com/chosen/chosen/chosen.jquery.js" type="text/javascript"></script>
<script src="select-sync/select-sync.js"></script>
</body>
</html>