forked from pulsir/pulsir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtagbox.html
64 lines (53 loc) · 1.07 KB
/
tagbox.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
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="tagbox.min.js"></script>
<script>
$(function() {
var items = [
{
id: 1,
email: '',
name: 'Review'
},
{
id: 2,
email: '',
name: 'Blog'
},
{
id: 3,
email: '',
name: 'Column'
},
{
id: 4,
email: '',
name: 'Uncategorised'
}
];
$('#tags').tagbox({
items: items,
searchIn: ['name'],
rowFormat: '<span class="name">{{name}}</span>',
tokenFormat: '{{name}}',
valueField: 'id',
itemClass: 'user'
});
});
</script>
<style>
.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">
<input autocapitalize="off" id="tags" name="tags" type="text" />
</body>
</html>