Questions tagged [jquery-autocomplete]

Enhances input element to quickly select a value from a list or add your own. Comes with various options and hooks for customizing and extending. Powered by jQuery.

jQuery autocomplete enables users to quickly find and select from a pre-populated list of values as they type into the field, leveraging searching and filtering. The datasource is a simple JavaScript array, provided to the widget using the source option. Part of .

API Documentation

1526 questions
285
votes
17 answers

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 defines the ajax url to and how to process the…
120
votes
5 answers

How to get jQuery dropdown value onchange event

I have added two jQuery UI Dropdown Autocomplete script. Now I want get both value onchange of second dropdown and want to store separately in variable. How it is possible? Any ideas or suggestions? Thanks. My Fiddle: Sample My JS Code: (function($)…
Rajnikanth
  • 2,745
  • 6
  • 31
  • 46
72
votes
7 answers

Cannot set property '_renderItem' of undefined jQuery UI autocomplete with HTML

I'm using the following code to render my jQuery UI autocomplete items as HTML. The items render correctly in the autocomplete control, but I keep getting this javascript error and can't move past it. Firefox Could not convert JavaScript…
Carl Weis
  • 6,794
  • 15
  • 63
  • 86
71
votes
22 answers

jQuery autoComplete view all on click?

I'm using jQuery's autocomplete in a relatively simple way: $(document).ready(function() { var data = [ {text: "Choice 1"}, {text: "Choice 2"}, {text: "Choice 3"} ] $("#example").autocomplete(data, { …
Rio
  • 14,182
  • 21
  • 67
  • 107
58
votes
3 answers

jQuery autocomplete: How to show an animated gif loading image

I'm using the jQuery AutoComplete plugin combined with ajax. Do you know how can I show a progress indicator while the ajax search is performed? This is my current code.