-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·23 lines (21 loc) · 866 Bytes
/
index.html
File metadata and controls
executable file
·23 lines (21 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<script src="./jquery.min.js" type="text/javascript"></script>
<script src="./fullTagger.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="./fullTagger.css">
<script type="text/javascript">
$(document).ready(function() {
// $('.contenteditable').fullTagger({hashtag: true, mention: false});
// $('.contenteditable').fullTagger({hashtag: true});
// $('.contenteditable').fullTagger({sample: false, url: 'example.com/results.json'});
$('.contenteditable').fullTagger();
})
</script>
</head>
<body>
<div class="container">
<div class="contenteditable" contenteditable="true"></div>
<div class="autocomplete"></div>
</div>
</body>
</html>