jQuery-Autocomplete icon indicating copy to clipboard operation
jQuery-Autocomplete copied to clipboard

Ajax Autocomplete for jQuery allows you to easily create autocomplete/autosuggest boxes for text input fields

Results 106 jQuery-Autocomplete issues
Sort by recently updated
recently updated
newest added

Only add classs selected to children in the suggestion container that have the suggestion class, incase you want to add a title in the suggestion container before render

In a custom beforeRender function where I inserts additional dom elements into the autocomplete container and it's first element is not always an autocomplete suggestion item. The function called 'activate'...

Just like the onSelect callback, an onScroll callback would come in very handy (and is very simple to add to the exisiting code).

`transformQuery` is an optional function that is run in `getQuery` and does nothing by default. It's useful for example to "slugify" the query so that accents are removed before the...

When doing mouse over or doing up+down with the keyboard I wanted to call a kind of preview on my site. So I needed a hook for that. Which requires...

Also you can include an option to redefine autocomplete suggestion tmpl, it will be nice. Or you can provide at least custom class name for each group. Thanks!

Issue: Suggestion list shows up and disappears immediately when using triggerSelectOnValidInput:false. (Please, do not close the issue again without testing it.) Test scenario for the bug: enter 'a' in the...

Hi, I am using to show ajax spinning indicator in text box as below onSearchStart : function(){ $(this).addClass('working') }, onSearchComplete : function(){ $(this).removeClass('working') }, onSearchError: function(){ $(this).removeClass('working'); } This works...

There is some interesting features made by contributors here https://github.com/devbridge/jQuery-Autocomplete/pulls Some fo thems got a date > 6 months. Can you please take a look at them ? THANKS

It would be really useful and nice to be able to listen for some of the callbacks (particularly `onSelect`) as events instead of needing to pass them as callbacks into...

Enhancement