-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
49 lines (39 loc) · 1.92 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
45
46
47
48
49
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/favicon.ico">
<!-- <link rel="apple-touch-icon" href="/.png"> -->
<link rel="stylesheet" href="assets/css/style.css?v=2">
<!--[if gte IE 6 ]> <link rel="stylesheet" href="assets/css/ie6.css"> <![endif]-->
<!--[if gte IE 7 ]> <link rel="stylesheet" href="assets/css/ie7.css"> <![endif]-->
<!--[if gte IE 8 ]> <link rel="stylesheet" href="assets/css/ie8.css"> <![endif]-->
</head>
<body>
<h1>flyweight-jquery-custom-select</h1>
<div class="control">
<label for="count">Number of selects</label>
<input id="count" type="text" value="100">
<input id="addselect" type="button" href="#" value="Add select boxes">
<input id="apply" type="button" href="#" value="Apply plugin">
<input id="destroy" type="button" href="#" value="Destroy">
<input id="enable" type="button" href="#" value="Enable">
<input id="disable" type="button" href="#" value="Disable">
<span id="time"></span>
</div>
<form id="form" method="get" action="#">
</form>
<script src="assets/js/libs/jquery-1.4.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="assets/js/jquery.flyweightcustomselect.js" type="text/javascript" charset="utf-8"></script>
<script src="assets/js/script.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>