All Questions
1,187 questions
0
votes
0
answers
47
views
JQuery Autocomplete function is triggering multiple times
I need to set a search bar in my code where it will retrive the data of the products present in the database.Here in the same project they have used the exact code to do the product search I used that ...
1
vote
1
answer
112
views
Add custom div in end of jQuery UI Autocomplete with list
I want to add a custom div at the end of jQuery-autocomplete list
I tried adding that custom div under ul.
autoCompleteDiv.data("ui-autocomplete")._renderMenu = function (ul: JQuery, items: ...
0
votes
2
answers
146
views
jQueryUI Autocomplete - cant select with mouse
Can't get the jQueryUI autocomplete to work with the mouse (autocomplete input is in bootstrap modal form). Only works when selecting with the keyboard, while selecting with the mouse is completely ...
0
votes
1
answer
109
views
JQuery Autocomplete via multiple values (array??) and external txt file
I would like the user to fill in several words in a free text field. These words must form a autocomplete list that has its source from an external text file. And also: if no suggestion is found, the ...
0
votes
1
answer
429
views
jQuery UI Autocomplete full list AND filter
I have this code, and I have it working to a point, but I can't figure out the final step. I am still too much of a JS novice I guess! :-)
What I am trying to accomplish is, when a user clicks on the ...
0
votes
4
answers
116
views
autcomplete jquery-ui , parameter doesn't recognized as string
my parameter in autocomplete function isn't recognized in jquery-ui when i do a console.log, i see an autocomplete-url and [Object object] after
that's my code :
`import algoliasearch from '...
0
votes
1
answer
54
views
Can't figure out how to populate an input based on Autocomplete suggestion select
I have a form with a section for adding inventory items. The are 3 inputs per row. "Item Description, Item Number and Quantity". They are standard dynamic inputs so I can add and remove rows ...
0
votes
2
answers
314
views
Autocomplete with jQuery
I have been trying to build a simple jQuery Autocomplete. The ajax query returns a JSON String formatted like this below
[[{"stockkeepingunitname":"LIT","stockkeepingunitid&...
0
votes
3
answers
309
views
jQuery autocomplete with aliases from dictionary
This previous question from 2021 (jQuery UI autocomplete with aliases) was a solution to an old question, but I'm trying to include the aliases within the dictionary instead of using two arrays.The ...
0
votes
1
answer
40
views
Two autocompletes on a page, not adding selected item to correct place
I have a page that has used a single autocomplete successfully for a long time. I am trying to add a second autocomplete, but the first and the second autocomplete add the item to the same table; what ...
0
votes
1
answer
960
views
jquery-ui autocomplete gives 'not a function' error
I've been having so many problems trying to get an autocomplete implementation working that I decided to go back to a simple case. I copied and pasted the code from the Demo here, and got exactly the ...
3
votes
1
answer
913
views
jQuery UI AutoComplete - How to handle multiple values ,when user removes a value in between the selected values
This is What I have :
I have a text box input element as below for loading cities autoloaded and a hidden field to list its ids:
<label class="col-sm-2 control-label" for="city_disp&...
0
votes
1
answer
92
views
How to access jQuery UI autocomplete suggestions outside of the autocomplete callback?
I want to combine the functions of jQueryUI autocmoplete and a tag input library (unfortunaly I don't remember where I got the library from, but the source code is inside the snippet).
A little ...
0
votes
2
answers
212
views
How do I replace underscores with spaces in autocomplete?
I'm using jquery-ui to create a search dropdown, but I'd like to replace underscores with spaces in the dropdown results.
I've tried .replace on the source but it doesn't seem to work.
Below is my ...
0
votes
0
answers
57
views
JQuery Autocomplete without polluting global namespace
So I have got a working solution for Jquery Autocomplete, but my Solution does pollute the global namespace. I tried to encapsule it within an object, but sadly functions withing the object are not be ...