-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
48 lines (46 loc) · 1.64 KB
/
example.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
45
46
47
48
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
/* apply a natural box layout model to all elements */
*, *:before, *:after {
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
</style>
<link rel="stylesheet" href="selectbox.css" />
</head>
<body>
<input type="text" />
<select id="original">
<option value="0">Zero</option>
<option value="1">One</option>
<option value="2">Two</option>
</select>
<select id="test">
<option value="0">Zero test</option>
<option value="1">One test</option>
<option value="2">Two test</option>
<option value="3">Zero test</option>
<option value="4">One test</option>
<option value="5">Two test</option>
<option value="6">Zero test</option>
<option value="7">One test</option>
<option value="8">Two test</option>
</select>
<input type="text" />
<a href="http://www.reservio.com">test</a>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="selectbox.js"></script>
<script>
$(document).ready(function() {
$('#test').selectbox({
});
});
</script>
</body>
</html>