Tagged Questions
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.
63
votes
11answers
30k views
What's a good AJAX Autocomplete Plugin for jQuery?
I usually use jQuery as my JS library on my sites, and I would like to stick with it since I'm familiar with it.
I need to implement an AJAX autocomplete, mainly for suggesting search results. Here ...
47
votes
9answers
17k 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
6answers
8k views
jQuery Autocomplete plug-in search configuration
I'm looking into using jQuery autocomplete plug-in to implement user lookup by first or last name. It looks like by default autocomplete looks up words by character sequence no matter its occurrence ...
8
votes
11answers
9k views
jQuery autoComplete view all on click?
Hey everyone
I'm using jQuery's autocomplete in a relatively simple way:
$(document).ready(function() {
var data = [ {text: "Choice 1"},
{text: "Choice 2"},
{text: ...
5
votes
3answers
184 views
How do I get a two column jquery autocomplete?
I have two lists of things that I want to search through for an auto complete box on my site. One is a list of stores, and the other is a list of searches that other people have done for products. I ...
5
votes
4answers
340 views
jQuery autocomplete - optimization question
would love your thoughts on this one.
I am using jQuery autocomplete in a ASP.NET MVC application to retrieve a list of records from a database - I would like to know if there is a better way than ...
5
votes
2answers
1k views
jQuery Autocomplete (1.8.5) - Uncaught TypeError, property 'source' is not a function
I am attempting to use the jQuery autocomplete widget which I have used previously on earlier versions of jQuery.
With the code I'm currently using (and jQuery UI 1.8.5) I am getting the following ...
5
votes
1answer
3k views
jquery autocomplete not working with JSON data
My PHP code return JSON data to jquery autocomplete but autocomplete not working
Jquery autocomplete
$("input#txtaddkey").autocomplete({
source: "keyword.php",
minLength: ...
5
votes
2answers
1k views
Where can I download a non-minified version of jQuery UI?
I'm trying to customize the autocomplete combobox
with the intent of using it for nested lists with flyouts. Starting this with the minified version of jQuery UI is obviously not ideal. The download ...
4
votes
1answer
580 views
Implementing jquery UI autocomplete to show suggestions when you type “@”
I'm using jquery UI AutoComplete to allow users to tag friends using @mentions. By default, the autocomplete suggestions appear when as soon you put focus on the textbox. How can you make the ...
4
votes
3answers
2k views
jQuery autocomplete: How to show an animated gif
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.
<script ...
4
votes
1answer
2k views
jQuery UI Autocomplete: Triggering a Search From outside of autocomplete
I would like to trigger some jQuery autocomplete events from outside of autocomplete but I don't know how to. i.e.
$("something").autocomplete({select:function(event,ui){do x},
...
4
votes
1answer
431 views
JQuery Autocomplete: Overriding default behavior
I want to have some sort of custom autocomplete and I thought it makes more sense to customize jQuery's autocomplete. So I'd like to know:
How to force open the autocomplete list? ...
4
votes
1answer
169 views
jquery.autocomplete reverts to invalid previous suggestion on tab
I'm using jQuery Autocomplete and users are seeing the following behaviour:
User starts typing a string and suggestions are presented
User keeps typing until no suggestions are valid any longer (and ...
4
votes
1answer
582 views
event triggered by backspace key but not delete key
I have a form field which uses Jorn Zaefferer's "autocomplete" jQuery plugin. If i type some text, then select part of it and hit backspace, the autocomplete list updates. But if i hit delete ...
4
votes
8answers
7k views
jQuery Autocomplete using extraParams to pass additional GET variables
I am referring specifically to the jQuery Autocomplete v1.1 plugin by Jörn Zaefferer [source: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/] as there seems to be quite a few ...
4
votes
1answer
2k views
jQuery autocomplete for dynamically created inputs
I'm having an issue using jQuery autocomplete with dynamically created inputs (again created with jQuery). I can't get autocomplete to bind to the new inputs.
Autocomplete
...
4
votes
1answer
943 views
JSON and jQuery.ajax
im trying to use the jQuery UI autocomplete to communitate with a webservice with responseformate JSON, but i am unable to do so.
My webservice is not even executed, the path should be correct since ...
4
votes
2answers
312 views
jQuery UI Autcomplete: POST instead of GET
jQuery UI Autcomplete:
How can I POST the term to the search script instead of GET?
4
votes
3answers
1k views
Is there more than one jQuery Autocomplete widget?
I thought there was only one - included in jQuery UI and documented here.
I know there are third-party autocomplete widgets that plug-in to jQuery, like the one from devbridge. But I would ...
3
votes
1answer
45 views
How to manipulate jquery autocomplete plugin to get both the id and the value
Im using this jquery autocomplete plugin. The data format for autocomplete is like the following
"name"=>"1" format.
Im just showing the name of the product in my drop down list and it is ...
3
votes
1answer
50 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
1answer
267 views
XHR request stubbing for Capybara JavaScript Testing
I'm trying to write a request_spec that tests the functionality of a page with a form that does a ajax autocomplete lookup and returns valid results to then activate the submit button.
I'm wondering ...
3
votes
1answer
276 views
Autocomplete and tooltip with jquery
How to display the autocomplete and tooltip like this?
Thanks all.
3
votes
2answers
106 views
Implementing jQuery Autocomplete in many inputs in a page
I have an autocomplete which takes results from google suggestions. On a page I have multiple input fields which I'd like to include that function so that all inputs will be taking results from google ...
3
votes
2answers
680 views
jQuery UI - Autocomplete - Custom style?
I'm using the following code and it's working, getting values back etc, but the <b> and <br> tags show up as text rather than get rendered. I'd like the item.id and item.label to be on ...
3
votes
3answers
4k views
using jquery autocomplete difficulty
I am using jquery autocomplete but having dificulty to load the autocomplete in the textbox
My model is as follows:
Users = new List<string>();
foreach (var item in User.LoadSortedByName())
{
...
3
votes
2answers
1k views
Jquery UI Autocomplete Extra Parameters and Autofill - A frustrated solution
Been looking into Jquery UI's Autocomplete (v1.8.5) and realized there is a sever lack of documentation on sending extra parameters and shooting extra data to autofill other fields. What I have works, ...
3
votes
3answers
773 views
jQuery AutoComplete Fill Array
I'm attempting to use jQuery's autocomplete feature, and after reading several posts I still have two questions:
1) I've gotten autocomplete to work with the code posted at the bottom, however I ...
3
votes
2answers
1k views
jQuery UI autocomplete caching using $.map function
I am trying to implement caching using jQuery UI autocomplete.
I am using jQuery 1.4.4 and UI 1.8.6
Here is the basic code that I got working:
$('#searchbox').autocomplete({
source: ...
3
votes
1answer
2k views
Using jQuery Autocomplete with Validator onBlur timing problem
Here's my problem, I have an input element in a form that is implementing jQuery.Autocomplete and jQuery.validate, all working normally except when I click an element in the autocomplete list to ...
3
votes
1answer
2k views
Add a link to a JQueryUI autocomplete item
When a user starts typing on the searchbox, the suggestion page returns the latest item from all collections matching that nama, plus other data.
I'd like to show that item (along its image), and a ...
3
votes
5answers
5k views
Clickable autocomplete, like google
I'm looking for an autocomplete that have no "submit" button, but that when the user click on the autocomplete keyword he would be redirected to another URL, that i will choose
i'm using ...
2
votes
1answer
51 views
jquery autocomplete result box tiny
I am having a weird problem with the autocomplete UI. I have searched on here and I cannot find anything similar.
http://jsfiddle.net/TYPfw/ has the jquery and the HTML, here is the PHP.
$return_arr ...
2
votes
2answers
74 views
comma separated auto complete with jquery auto complete
I am trying to implement auto complete via jquery auto complete plugin.A simple auto complete works for me. I am not able to achieve comma separated auto complete .
Please help me with where I am ...
2
votes
0answers
146 views
jQuery autocomplete with remote json data
jQuery(document).ready(function () {
var aToken = document.getElementById('aToken').value;
jQuery("#name_inp").autocomplete("https://graph.facebook.com/me/friends?access_token="+aToken, {
...
2
votes
0answers
52 views
tag selector doesn't show correct result in some browsers
I'm making an wysiwig editor using jquery-tagSelector.js.
(example is avaliable on http://jcesar.artelogico.com/jquery-tagselector/)
The problem is this: some browsers cannot show correct result
(I ...
2
votes
2answers
45 views
jQuery AutoComplete - Result shows encoded characters
I'm using the following code to search an ajax file for a query with the autocomplete plugin:
$("input.search_bar").autocomplete("/autocomplete/", {
scrollHeight: 300,
minChars: 3
});
The ...
2
votes
1answer
143 views
Jquery Autocomplete scrollable dropdown
I am working with jquery autocomplete textbox. My code and script is working fine, but now i need 'scrollable dropdown(along X and Y axis)' instead of plane dropdown list.
Script used to facilitate ...
2
votes
2answers
65 views
Firing the select event on click for jQuery autocomplete
After playing around with jQuery's autocomplete feature a bit, I couldn't get the select event to fire onclick. Which is strange because the onfocus event fires when the mouse is dragged over each ...
2
votes
2answers
103 views
Dynamic input textbox not binding to autocomplete
I am trying to follow this solution, but not getting any luck.
jQuery autocomplete for dynamically created inputs
var autocomp_opt = {
source: function (request, response) {
$.ajax({
...
2
votes
2answers
135 views
Autocomplete formatItem not called, neither any error in firebug
Basically I want to show an image and besides it text. This is my autocomplete code:
$("#tagBox").autocomplete({
source: ...
2
votes
1answer
145 views
How to trigger the select event handler in jqueryui autocomplete combobox?
I have a jqueryui autocomplete combo-box widget in which once the user selects something in the combobox, the select event handler within the combo-box makes an ajax call to render content in another ...
2
votes
1answer
152 views
jquery-ui-1.8.14 Autocomplete with php and mysql
I'm not very much into js and programing in general, but I'm very stuck on something that really shouldn't be too difficult. Feel free to visit the test page:
[REMOVED LINK]
I have three ...
2
votes
3answers
404 views
Rails gem rails3-jquery-autocomplete how to scope by user
I'm using the Rails gem rails3-jquery-autocomplete to add categories to posts.
I would like to restrict the search to include only categories that belong to the current user or post's author in the ...
2
votes
3answers
328 views
Stop 'enter' key submitting form when using jquery ui autocomplete widget
I've got a form that uses the jquery autocomplete UI plugin, http://jqueryui.com/demos/autocomplete/, which all works sweet except when you press the enter key to select an item in the autocomplete ...
2
votes
5answers
102 views
is it possible to set a maximum number of result on autocomplete?
I'm using autocomplete of jQuery UI : excellent plugin!
The only thing I don't like is that, if I have a list of 40 items, I'd like to show only 10 items.
This is my actual code :
<script ...
2
votes
1answer
686 views
Facebook style autocomplete using dojo
I found facebook style autocomplete using jQuery. But im using dojo framework for my web app. Can you suggest how to implement or any open source code available for autocomplete using dojo framework. ...
2
votes
1answer
178 views
Jquery Autocomplete with Django
I'm trying to make a search of some items with a jquery ui autocomple in a django app. I have looked at this question, and I'm following just like autocomplete doc. I'm not interested in plugins or ...
2
votes
2answers
542 views
Jquery autocomplete, if no matches found display “no matches found” in dropdown but dont allow focus on it
The question says it all. My jquery autocomplete gets its source from one of my own apis. If it cannot find any matches, it just returns "no matches found" which is then displayed in the dropdown. ...