-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
46 lines (45 loc) · 1.58 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
<!DOCTYPE html>
<html>
<head>
<title>Live Search Plugin</title>
<meta charset="utf-8"/>
<meta name="author" name="achraf bellaali"/>
<!--
Email : achraf.bellaali@gmail.com
Github : https://github.com/IndianGhost
Twitter : @achraf_bellaali
LinkedIn : achraf bellaali
-->
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<style type="text/css">
table{
width: 100%;
}
</style>
<script src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/draw_table.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1 class="display-4">Live Search HTML !</h1>
<p class="lead">This is a simple jQuery plugin, developed by <a href="https://github.com/IndianGhost">Achraf Bellaali</a>.</p>
<hr class="my-4">
<p>You can use in any web project to find quickly your data especially for tables that contains a lot of rows.</p>
<p class="lead">
<a class="btn btn-primary btn-lg" href="https://github.com/IndianGhost/liveSearch" role="button">Download it from github</a>
</p>
</div>
<center>
<div class="form-group">
<input type="text" class="form-control" style="width: 20%" id="js-search" placeholder="Taper pour chercher…">
</div>
</center>
<table class="table js-table">
<thead class="js-thead"></thead>
<tbody></tbody>
</table>
</div>
<script type="text/javascript" src="js/search.js"></script>
</body>
</html>