Skip to content

make/jquery-textcomplete

Repository files navigation

Autocomplete for Textarea

Bower versionAnalytics

Introduces autocompleting power to textareas, like a GitHub comment form has.

Demo

Demo.

Synopsis

$('textarea').textcomplete([{match: /(^|\s)(\w{2,})$/,search: function(term,callback){varwords=['google','facebook','github','microsoft','yahoo'];callback($.map(words,function(word){returnword.indexOf(term)===0 ? word : null;}));},replace: function(word){returnword+' ';}}]);

Dependencies

  • jQuery (>= 1.7.0) OR Zepto (>= 1.0)

Documents

See doc dir.

License

Licensed under the MIT License.

Credits

Contributors

Patches and code improvements were contributed by:

https://github.com/yuku-t/jquery-textcomplete/graphs/contributors

About

Introduce autocompleting power to textareas, like GitHub comment forms have.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript99.3%
  • CSS0.7%