-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (61 loc) · 3.17 KB
/
index.html
File metadata and controls
68 lines (61 loc) · 3.17 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<html class="no-js" lang="">
<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">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css">
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<header>
<div class="container">
<h1>LiveFilter</h1>
<p class="lead">A jQuery plugin to provide a live filter on a list.<br/>Multiple options like: clear button, auto-complete and showing the number of matches</p>
</div>
</header>
<main>
<div class="container">
<div class="row">
<div class="col-sm-6">
<h2>Basic exemple</h2>
<p>A simple list with a live filter</p>
<div class="row">
<div class="col-sm-8">
<div class="form-group">
<label for="exemple">Choose an option to filter the list</label>
<select name="exemple" id="exemple" class="form-control">
<option value selected>Choose a filter</option>
<option value="animals">Animals</option>
<option value="vegetals">Vegetals</option>
<option value="materials">Materials</option>
</select>
</div>
<div id="toFilter" class="list-to-filter">
<ul class="list-unstyled">
<li class="items" data-exemple="animals">Firefox</li>
<li class="items" data-exemple="vegetals">Rose</li>
<li class="items" data-exemple="materials">Rock</li>
<li class="items" data-exemple="vegetals">Tree</li>
<li class="items" data-exemple="animals">Dog</li>
<li class="items" data-exemple="materials">Water</li>
<li class="items" data-exemple="animals">Cat</li>
<li class="items" data-exemple="vegetals">Grass</li>
<li class="items" data-exemple="materials">Air</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer></footer>
<script src="js/vendor/src/nativeFilterlist.js"></script>
<script src="js/plugins.js"></script>
</body>
</html>