1.8.5 • Published 7 years ago
jquery-textcomplete v1.8.5
jquery-textcomplete is no longer maintained. Please use yuku-t/textcomplete instead.
Autocomplete for Textarea
Introduces autocompleting power to textareas, like a GitHub comment form has.
Demo.
Synopsis
$('textarea').textcomplete([{
match: /(^|\b)(\w{2,})$/,
search: function (term, callback) {
var words = ['google', 'facebook', 'github', 'microsoft', 'yahoo'];
callback($.map(words, function (word) {
return word.indexOf(term) === 0 ? word : null;
}));
},
replace: function (word) {
return word + ' ';
}
}]);
Dependencies
- jQuery (>= 1.7.0) OR Zepto (>= 1.0)
Documents
See doc dir.
License
Licensed under the MIT License.
Contributors
Patches and code improvements were contributed by:
https://github.com/yuku-t/jquery-textcomplete/graphs/contributors
1.8.5
7 years ago
1.8.4
8 years ago
1.8.3
8 years ago
1.8.2
8 years ago
1.8.1
8 years ago
1.8.0
9 years ago
1.7.3
9 years ago
1.7.2
9 years ago
1.7.1
9 years ago
1.7.0
9 years ago
1.6.3
9 years ago
1.6.2
9 years ago
1.6.1
9 years ago
1.6.0
9 years ago
1.4.0
9 years ago
1.3.4
9 years ago
1.3.3
9 years ago
1.3.2
9 years ago
1.3.1
9 years ago
1.3.0
9 years ago
1.2.2
9 years ago
1.2.1
9 years ago
1.2.0
9 years ago
1.1.0
9 years ago
1.0.0
10 years ago
0.8.2
10 years ago
0.8.1
10 years ago
0.8.0
10 years ago
0.7.3
10 years ago
0.7.2
10 years ago
0.7.0
10 years ago
0.4.0
10 years ago