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

onBlur: function () { var that = this, options = that.options; /////////////////////////////////////////////////////////////////////// if (that.selection == null) { (options.onInvalidateSelection || $.noop).call(that.element); } ////////////////////////////////////////////////////////////////// // If user clicked on a suggestion, hide()...

Hello, I am just testing jQuery-Autocomplete and have set up [a simple example](https://codepen.io/oshihirii/pen/YxBJZO) from documentation: ```js var countries = [ { value: 'Andorra', data: 'AD' }, // ... { value:...

This adds the convenience of being able to see dropdown options without having to type first as long as the input meets the minChars requirement. It allows it perform a...

Could the maxheight option include units, so it is possible to set maxheight in px, rem, em or %? This way it can be more flexible for responsive designs.

I can see that `suggestions` allow `AutocompleteSuggestion[]` only ``` interface AutocompleteResponse { suggestions: AutocompleteSuggestion[]; } ``` The docs state that `suggestions` can also be an array of strings like so:...

It looks like this package is not compatible with VoiceOver the dropdown list (of suggestions) is not read out by VO. Instead VO reads what is "underneath" the dropdown when...

Hi, is it also possible to access the suggestions array when hitting enter? I made a multi-column search and would then like to load all displayed suggestions at once. thanks

Hi i tries to test it with arabic countries names but display nothing although it works fine with english words and my page has var countries = { "AD": "Andorra",...

Pressing ENTER inside the input field hides the suggestion list. To reproduce: - Focus on input field - Enter any text to display suggestions - Press ENTER You can also...

This should add better control for styling and applying custom classes for each suggestion class and for selected suggestion class.