jquery-autocomplete icon indicating copy to clipboard operation
jquery-autocomplete copied to clipboard

The original jQuery autocompleter. Does not need any other plugins. Supports local and remote data sets, plain text and JSON data, various options and callback hooks.

Results 53 jquery-autocomplete issues
Sort by recently updated
recently updated
newest added

This option is a function returning set of data (as opposed to static 'data' option).

This way, all options can be changed dynamically even after initializing

A handy option that allows one to place autocomplete without positioning it absolutely and automatically.

No projeto existem callbacks muito boas, porém senti falta da onSuccess pra me permitir maior estilização quando a apresentação dos resultados fosse concluida

If there is several ajax requests at one time we need to cache all results but don't show result of request which is not last

Amended createItemFromResult to fire on mousedown rather than click, preventing a prolonged mouse click from hiding the autocomplete dropdown and not updating the text input.

Example ``` javascript $('#searchfield').autocomplete({ url: 'http://www.someexternalurl.com/autocomplete', remoteDataType: 'jsonp', jsonpCallback: 'customCallbackName' }); ``` Response must be encapsulated in a function defined with jsonpCallback ``` javascript customCallbackName({"results": ["suggestion1", "suggestion2", ...]}) ```