-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (26 loc) · 947 Bytes
/
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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Live Search</title>
<!--leave these if you have already used jquery and bootstrap files in your website-->
<script src="live_search_assets/js/jquery-2.1.3.min.js"></script>
<script src="live_search_assets/js/bootstrap.min.js"></script>
<link href="live_search_assets/css/bootstrap.css" rel="stylesheet" />
<!--Include these lines for live search-->
<script src="live_search_assets/js/ls.js"></script>
<link href="live_search_assets/css/ls.css" rel="stylesheet" />
<!--End-->
</head>
<body>
<div class="container">
<div class="form-group">
<div class="input-group">
<span class="input-group-addon">Search</span>
<input type="text" id="ls_search_text" placeholder="Type any keyword to search" class="form-control" />
</div>
</div>
<br />
<div id="ls_result"></div>
</div>
</body>
</html>