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

(Defaults to previous implementation) I just needed to do this to use an endpoint which was expecting the autocomplete search term in a nested object (something like the example I...

Hello. I have a laptop with Windows 10 and a precision-driven touchpad (with gestures). Today I discovered that the autocomplete in my application is broken and that I can't select...

I need to get the event in the `onSelect` method. So I can determine the clicked target element. Something like this: ```javascript input.autocomplete({ onSelect: function (suggestion, event) { console.log(event.target); }...

I need to implement the following workflow: user types into an input field, selects one of suggestions, then types some more, selects one of suggestions and so on. The use...

If preserveInput is enabled there is a problem that occurs (happens in all mayor browsers). **Reproduce**: Bug A) 1. Select a suggestion item with the mouse -> The textfield loses...

Able to use .autocomplete-selected and .autocomplete-suggestion properly. No issues here. But, not sure how to update my css to change the background color of the list items based on property...

How to reproduce: 1) Open examples from index.html (repository root) 2) Type something to any autocomplete field to get results. 3) Click and hold left mouse button for more than...

When i trigger focus event in field with autocomplete -> suggestion showing and hide. Do you know what is it?

I'm using a local list for suggestions. However it seems to be not possible to have a custom sorting for this list. ```ts formElement.ref.autocomplete({ lookup: data, autoSelectFirst: true, minChars: 0,...

Hi, I want to use `transformResult` to return the suggestions, but the `transformResult` does not trigger at all. I check in the Chrome log there is no log printed out,...