forked from sparkbox/Custom-Selectbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (25 loc) · 867 Bytes
/
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
<!doctype html>
<html lang="en" class="no-js">
<head>
<title>Custom Select Test Page</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/sparkbox-select.css">
<script src="js/modernizr-1.7.min.js"></script>
</head>
<body>
<form>
<select class="sparkbox-custom">
<option value="the_googs">Chrome</option>
<option value="the_faris">Safari</option>
<option value="foxfire">Firefox</option>
<option value="the_splora">IE 9</option>
</select>
<input type="submit"/>
</form>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="js/jquery.sparkbox-select.js"></script>
<script src="js/script.js"></script>
</body>
</html>