-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautosuggest.html
32 lines (27 loc) · 901 Bytes
/
autosuggest.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Auto-Suggest</title>
<link rel="stylesheet" href="./css/style.css">
<script src="https://code.jquery.com/jquery-latest.js"></script>
<script src="./js/autosuggest.js"></script>
<script src="./js/caret.min.js"></script>
</head>
<body>
<div class="container">
<section class="section is-medium">
<h1 class="title">Auto-Suggest Demo</h1>
<h2 class="subtitle">
Simple tool that automatically generates suggestions as you type.
</h2>
<div class="container" id="container">
<textarea id="source" class="textarea" rows="5"></textarea>
</div>
<div class="suggested" id="suggested"></div>
</section>
</div>
</body>
</html>