This repository has been archived by the owner on Oct 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
57 lines (51 loc) · 1.7 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
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<title>jQuery.inlineComplete demo</title>
<meta charset="utf-8"/>
<meta name="robots" content="noindex"/>
<style type="text/css">
* {
font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
font-size: 14px;
}
h1 {
font-size: 15px;
}
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery-2.0.0.min.js"></script>
<script type="text/javascript" src="jquery.inlinecomplete.js"></script>
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<input type="text" name="dummy" id="dummy" list="dummy-list">
<datalist id="dummy-list">
<option value="facebook.com">
<option value="apple.com">
<option value="google.com">
<option value="pburke.de">
</datalist>
<form action="http://patrickburke.de/action.php" method="post">
<p>
This input field should complete these URLs: <span
class="url-list"></span><br/>
<input class="test" type="text"
data-list="list:facebook.com|apple.de|google.de|www.golem.de|golem.de"
name="autocomplete_data_attr_list"/>
</p>
<p>
This input field should complete these URLs: <span
class="url-list"></span><br/>
<input class="test" type="text"
data-list="list:apple.de|google.de|www.golem.de|golem.de"
name="autocomplete_data_attr_list"/>
<input class="test" type="text"
data-list="url:apple.de|google.de|www.golem.de|golem.de"
name="autocomplete_data_attr_list"/>
</p>
<p>
<input type="submit" value="Submit"/>
</p>
</form>
</body>
</html>