Tagged Questions

The jQueryUI autocomplete widget, when added to an input field, enables users to quickly find and select from a pre-populated list of values as they type, leveraging searching and filtering. Autocomplete can be customized to work with various data sources, by just specifying the source option. A ...

learn more… | top users | synonyms

53
votes
9answers
18k views

jQueryUI: how can I custom-format the Autocomplete plug-in results?

I'm using jQuery UI Autocomplete plug-in. Is there a way to highlight search character sequence in drop-down results? For example, if I have data: "foo bar" it and I search for "foo" I get "foo ...
19
votes
2answers
5k views

Using html in jQuery UI autocomplete

Before jQuery UI 1.8.4 I could use html in the JSON array I built to work with an autocomplete. I was able to do something like: $row_array['label'] = '<span style="color: red; font-family: ...
14
votes
2answers
5k views

Clear form field after select for jQuery UI Autocomplete

I'm developing a form, and using jQuery UI Autocomplete. When the user selects an option, I want the selection to pop into a span appended to the parent <p> tag. Then I want the field to clear ...
11
votes
2answers
3k views

Detecting no results on jQuery UI autocomplete

Before you point me to them, yes, I have reviewed the half dozen posts on this topic, but I am still stymied as to why this doesn't work. My goal is to detect when the autocomplete yields 0 results. ...
9
votes
2answers
388 views

jquery Autocomplete working with older versions of the browsers but not new ones?

here is the JSON data for my auto complete { "list" : [ { "genericIndicatorId" : 100, "isActive" : false, "maxValue" : null, "minValue" : null, "modificationDate" : ...
8
votes
5answers
631 views

lightweight alternative to jquery-ui autocomplete plugin?

does anyone know of a lightweight alternative to the jquery-ui autocomplete plugin? I'm not using any other jquery-ui components in the project (base lib is jquery 1.5.2). So dont feel I can justify ...
8
votes
9answers
3k views

jQuery UI Autocomplete Width Not Set Correctly

I have implemented a jQuery UI Autocomplete box, and rather than being the width of the textbox, the dropdown options are expanding to fill the remaining width of the page. Have a look at this ...
7
votes
2answers
1k views

How to patch *just one* instance of Autocomplete on a page?

This answer -- jQueryUI: how can I custom-format the Autocomplete plug-in results? -- describes how to monkeypatch the jqueryUI autocomplete widget, so that it displays things in a particular way. ...
7
votes
9answers
9k views

Is it possible to set the width of a jquery autocomplete combobox

i am using this jquery ui combobox autocomplete control out of the box off the jquery ui website: my issue is that i have multiple comboboxes on a page and i want them to have different widths for ...
6
votes
2answers
726 views

jQuery autocomplete don't select item

In option "source" I get with ajax the results + 1 custom note text with info about possible results. Like: "Show 2 of 3456 results". Its only a info for the user. For the last entry in the -ul- ...
6
votes
1answer
369 views

Looking for js (perhaps jQuery) timezone (only) control UI widget

I have been looking for a javascript (hopefully jQuery) timezone chooser/picker/control widget that I can include in my social-calendar/event-router web app. Given that there are approximately 400 ...
6
votes
5answers
3k views

Changing width of jqueryui autocomplete widgets individually

I'm working with mutiple jquery-ui autocomplete widgets on one page and want to be able to set the widths of each one individually. Currently, I'm doing it like this: ...
6
votes
10answers
10k views

how do set a default value with jquery autocomplete combobox

when using the jquery ui autocomplete combobox, can you set a deafult value of the combobox ?
5
votes
1answer
167 views

jQuery Autocomplete source property as function(){} is very slow

I have two test cases using a reasonably large json object (1.2mb): source: data and source: function (request, response) { response(data); } In the first case the ...
5
votes
1answer
291 views

Autocomplete doesn't work properly

I want to apply "Jquery UI Autocomplete with multiple values" to one registration forms input field. What i want to do exactly: When visitor types name of existing user to this input field, first of ...
5
votes
1answer
2k views

jQuery UI AutoComplete ui.item is undefined

A jsfiddle of this code can be found here. Pretty basic code. I just want an autocomplete list for the list of sites in the Stack Exchange network with their favicon. The source function works ...
5
votes
4answers
2k views

Can you restrict entering invalid keystrokes with jQuery UI autocomplete combobox?

When using the jQuery UI autocomplete combobox, I would thought there would be an option to force only a valid key entry based on the list. Is there any way to not allow invalid keys, so you can only ...
4
votes
1answer
168 views

eBay autocomplete/suggest with jQuery

I am trying to implement eBay autosuggest in an opera extension using jQuery autocomplete. eBay's JSON url is: http://anywhere.ebay.com/services/suggest/?v=jsonp&q=test and this is what it ...
4
votes
3answers
638 views

jQuery autocomplete - IE8 issue - this tab has been recovered

I run into a problem with jQuery UI - Autocomplete and IE8. I'm using combobox method which you can find on jQuery UI website - here Basically, it is creating autocomplete input + select menu from ...
4
votes
2answers
200 views

jQuery autocomplete

I have an autocomplete text box that needs to respond to 2 events: When the user is done typing something in the text box (I'm currently using focusout to assume when the user is done typing. So, if ...
4
votes
1answer
391 views

jQuery UI Autocomplete: Aborting the request

I'm using the callback version of the source option which performs an ajax request. I figure if a user types a bunch of letters in rapid succession before an ajax request completes, we should abort ...
4
votes
2answers
3k views

jQuery UI Autocomplete disable Select & Close events

I'm using jQuery UI's Autocomplete slightly differently than it was probably created to do. Basically I want to keep all the same functionality, the only difference is that when the suggestion box ...
4
votes
2answers
2k views

JQuery UI AutoComplete SERVER-SIDE example? What does request/JSON response look like?

This seems to be a black hole: After an hour of searching the JQuery UI website, SO, and Googling, I've yet to find the most basic information of how to write the SERVER SIDE of the AutoComplete. ...
4
votes
2answers
940 views

jQuery UI Autocomplete with Hidden ID Field

Currently I have an HTML form with a hidden field right before a text input. A simplified version is below: <form> <input type="hidden" name="key" id="key" /> <input ...
4
votes
2answers
2k views

jQuery UI Autocomplete with hybrid text/id search

I'm having a lot of trouble making jQuery's autocomplete widget work for me. I am using a list of key/value pairs from a server. I have the following requirements: If the user selects a value from ...
3
votes
2answers
865 views

twitter bootstrap typeahead ajax example

I'm trying to find a working example of the twitter bootstrap typeahead element that will make an ajax call to populate it's dropdown. I have an existing working jquery autocomplete example which ...
3
votes
1answer
62 views

jQuery Autocomplete - Is caching no longer an option?

Using jQuery Autocomplete, according to the docs you have to do the following to cache: <script> $(function() { var cache = {}, lastXhr; $( "#birds" ).autocomplete({ ...
3
votes
2answers
203 views

jQuery UI Autocomplete Custom Markup

I'm using jQuery UI Autocomplete with a categorized search result and I want to spice it up with CSS. Unfortunately, jQuery UI doesn't make it easy and the default markup is really difficult to work ...
3
votes
6answers
176 views

customizing the drop down autocomplete box

I'm using jquerys autocomplete widget but I'm having a few issues trying to style the box that drop down when you search for something. I'm trying to move the box down a bit and change the border/bg ...
3
votes
1answer
48 views

filtering jqueryUI autocomplete options

I'm using the jqueryUI autocomplete widget on my site. Say i have the following items in my database... apple ape abraham aardvark When I type "a" in the autocomplete widget i get that list below ...
3
votes
1answer
88 views

JQuery: Autocomplete form submitting

I'm trying to use the jQuery Autocomplete function to submit a form when an item has been selected or an enter has been pressed upon selection. using PHP, Javascript and HTML. I'm trying to figure ...
3
votes
1answer
125 views

jQuery autocomplete autofocus not keeping up

When using a jQueryUI AutoComplete with AutoFocus set to true, if you type too quickly and hit enter, the first selection will replace what you typed, even if it doesn’t match. For example, if you ...
3
votes
1answer
127 views

How do I use jquery's UI autocomplete with ASP.NET and an external data source?

I've been trying to put the pieces together on this for a while and am having trouble. The components: ASP.NET web application MS SQL database and tables C# class with get and set for all table ...
3
votes
2answers
145 views

How to tag users in feed like Facebook or Twitter does?

HI I am working on a rails application. I want to implement user tagging as facebook or twitter does. When user is posting in feed he can tag any user with @ character at starting. I am using Jquery ...
3
votes
3answers
268 views

Is it possible to trigger the jQueryUI autocomplete “select” event manually?

I'm using jQueryUI autocomplete, and I have a function mapped to the select event, e.g.: $("#someId").autocomplete({ source: someData, select: function (event, ui) { ... }, focus: ...
3
votes
3answers
126 views

autocomplete results array

I have set up an autocomplete feature for an input box, with jQuery UI's .autocomplete(). How can I access the array (or object?) of results that drop-down when I start typing? I would like to use ...
3
votes
2answers
238 views

jQuery UI Autocomplete v1.8.14 Multi-word Search + Highlighting

I'm trying to achieve two things using jQuery UI Autocomplete v1.8.14. 1) Use a space delimited word search for all matches (independent of order): (eg search "some heart", matches "win the ...
3
votes
1answer
347 views

JQuery UI autocomplete not scrolling with arrow keys in Firefox

I am working with the JQuery UI autocomplete 1.8 with JQuery 1.6.1. (Getting newer versions of software is extremely difficult in my company so I am stuck with these.) I have a long list of strings ...
3
votes
2answers
234 views

jQuery Autocomplete style: match parent text input's style

Lots of style-related jquery autocomplete questions (yow), but none that want to "match the parent input's style". My Background I'm a java/c++ programmer that has also had quite a bit of experience ...
3
votes
1answer
1k views

jQuery UI - Formatting the autocomplete results. Add image possible?

We're moving from the bassistance.de autocomplete to jQuery UI autocomplete. I can't find as many examples for the jQuery UI version, the documentation seems a little sparse. That could just be me. ...
3
votes
1answer
928 views

jQuery Autocomplete mustmatch doesn't have any effect

I'm using jQuery 1.4.4 and jQuery UI 1.8.9. I have an autocomplete field that works really well, however I'd like to contrain the input to only what the autocomplete backend comes up with. The ...
3
votes
2answers
665 views

Having problems with jQuery UI Autocomplete

I'm trying to use the new autocomplete function in jQuery UI, but I'm having some problems. I'm able to retrieve data from the DB (I can see it in FireBug), but I'm not able to display the dropdown ...
3
votes
1answer
706 views

JQuery UI Autocomplete Syntax

Can someone help me understand the following code? I found it here. It takes advantage of the JQuery UI Autocomplete with a remote source. I've commented the code as best I can and a more precise ...
3
votes
1answer
851 views

Jquery UI Autocomplete

I am trying to get the Jquery UI autocomplete working on AJAX loaded dynamic fields in div #right I do not fully understand the code below. $("#right").delegate(".drugName", "focus", function(){ ...
3
votes
1answer
1k views

Display an icon in jQuery UI autocomplete results

I'm using the jQuery UI Autocomplete plugin (version 1.8), and I'd like to customize the way the suggestions show up. Specifically, I want to display not only some text, but an icon as well. ...
3
votes
3answers
4k views

jQuery AutoComplete does not show up

Inside a jquery dialog I would like to use the jquery autocomplete feature of jqueryUI. I have then prepared an action in my Controller (I am using ASP.NET MVC2) that is as follow public ...
3
votes
1answer
891 views

Custom search function for jQuery UI Autocomplete

I'm using jQuery UI Autocomplete. Is there a way to override its default search algorithm? The changes I want to make are: Prioritize words that start with the search term at the top of the ...
3
votes
3answers
330 views

Is there a way to force a user to select an autocomplete value before they can submit the form?

I am using the jqueryui autocomplete feature to allow the user to select their location. I need to make sure they select a location from the autocomplete before they can submit the form. I don't ...
3
votes
1answer
2k views

Undefined Results in jQuery Autocomplete

So I've got the latest versions of jQuery and UI running. I'm using the basic autocomplete invocation and returning valid JSON (validated via JSONLint). $("input#cust_id").autocomplete({ ...
2
votes
1answer
51 views

Unable to run Autocomplete jQuery with dynamically created variable ASP.net?

I am using jQuery Autocomplete code in javascript in aspx page. The code works fine when the data is declared in the script itself but when I pass the variable from code-behind to client script it ...

1 2 3 4 5 10