-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
75 lines (66 loc) · 1.42 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>jQuery.tagBox example</title>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="tagbox.min.js"></script>
<style>
/* Make sure you reset e'erything beforehand. */
* {
margin: 0;
padding: 0;
}
/* Although you can't see the box here, so add some padding. */
body {
padding: 100px;
}
.tagbox-item .name, .tagbox-item .email { /* The name and email within the dropdown */
display: block;
float: left;
width: 35%;
overflow: hidden;
text-overflow: ellipsis;
}
.tagbox-item .email {
float: right;
width: 65%;
}
</style>
<link rel="stylesheet" href="tagbox.css">
</head>
<body>
<form>
<input autocapitalize="off" autofocus id="tags" type="text" value="1" />
</form>
<script>
$(function() {
var items = [
{
id: 1,
email: '[email protected]',
name: 'Lionel Richie'
},
{
id: 2,
email: '[email protected]',
name: 'Bob D. Builder'
},
{
id: 4,
email: 'einstein@localhost',
name: 'Älbert ÉinStëiñ'
}
];
$('#tags').tagbox({
items: items,
searchIn: ['email', 'name'],
rowFormat: '<span class="name">{{name}}</span><span class="email">{{email}}</span>',
tokenFormat: '{{name}}',
valueField: 'id',
itemClass: 'user'
});
});
</script>
</body>
</html>