-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
46 lines (33 loc) · 836 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<html>
<head>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="suggestiveInput.js"></script>
<style>
body{
font-family:"Lucida Sans Unicode","Lucida Grande",Arial,Verdana,sans-serif;
font-size: 12px;
margin: 30px;
}
</style>
</head>
<body>
<script>
options = new Array();
options['value1'] = 'greate first value';
options['value2'] = 'greate second value';
suggestiveInput("tester", options)
</script>
<script>
options = new Array();
options['bvalue'] = 'first item in second list';
options['cvalue'] = 'second item in second list';
suggestiveInput("tester2", options)
</script>
<script>
options = new Array();
options['bvalue'] = 'first item in second list';
options['cvalue'] = 'second item in second list';
suggestiveInput("tester3", options)
</script>
</body>
</html>