Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/honza/suggestr.js
The dead simple javascript autocompleter
https://github.com/honza/suggestr.js
Last synced: about 6 hours ago
JSON representation
The dead simple javascript autocompleter
- Host: GitHub
- URL: https://github.com/honza/suggestr.js
- Owner: honza
- License: bsd-2-clause
- Created: 2011-06-13T13:55:50.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-03-31T01:16:11.000Z (over 12 years ago)
- Last Synced: 2024-04-16T01:44:56.551Z (7 months ago)
- Language: JavaScript
- Homepage: http://honza.github.com/suggestr.js/
- Size: 163 KB
- Stars: 68
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Suggestr.js
===========Suggestr.js is a dead simple, no configuration javascript autocompleter. Drop
it in your project and it will work. No nonsense. No bloat.Usage
-----### jQuery
```js
$('#your-cool-input-field').suggestr(['John', 'Peter', 'Mark']);
```### Pure JS
```js
var el = document.getElementById('input');
suggestr(el, ['John', 'Peter', 'Mark']);
```License
-------BSD. Short and sweet.