-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexample.html
More file actions
33 lines (31 loc) · 1.07 KB
/
example.html
File metadata and controls
33 lines (31 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<title>JSONTable</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS -->
<link rel="stylesheet" href="lib/css/app.css">
<link rel="stylesheet" href="lib/css/footable-0.1.css">
<link rel="stylesheet" href="lib/css/footable.sortable-0.1.css">
<link rel="stylesheet" href="lib/css/footable.paginate.css">
<!-- JavaScript -->
<script src="http://codeorigin.jquery.com/jquery-1.9.1.min.js"></script>
<script src="lib/js/footable.js"></script>
<script src="lib/js/footable.filter.js"></script>
<script src="lib/js/footable.sort.js"></script>
<script src="lib/js/footable.paginate.js"></script>
<script src="lib/js/footable.plugin.columnpicker.js"></script>
<script src="lib/js/JSONTable.js"></script>
<script src="example.js"></script>
</head>
<body>
<div class="searchbox">
Filter: <input id="myFilter" type="text" />
</div>
<div id="table">
</div>
<ul id="pagination1" class="footable-nav">
<span>Pages:</span>
</ul>
</body>
</html>