Tagged Questions
0
votes
1answer
25 views
Autocomplete issue in chrome
You can type in the field Destination/Hotels
URL : http://think.thinkhotels.com/
It will auto suggest you. functionality is working fine. But when you press left/right arrow key then the cursor ...
0
votes
1answer
28 views
How to Open Suggestion menu forcefully in autocomplete jQuery?
I want to open the suggestion menu of autocomplete upon clicking some button. How to do that?
var dropDown = $("<a class='showAll' title='Show all'/>")
...
0
votes
1answer
32 views
twitter typeahead with headers for the suggestions, how?
I followed this tutorial and implemented twitter typeahead with an ajax source (django backend) for recommendations into my drop down box.
I can get my dropdown to give me suggestions based on what I ...
-4
votes
0answers
77 views
What is $(document).queue(function())? [closed]
I have this code:
https://github.com/garyzhu/jquery.ui.combobox/blob/65433ee5af6e9b87b594e5bb5c4b16b030806e24/jquery.ui.combobox.js
Can anyone explain? this code:
$(document).queue(function () {
...
1
vote
2answers
47 views
JQuery- clear field on lost focus unless the field was populated from dropdown
I have a textbox where the user puts in some text, and a dropdown appears. When the user selects something from the dropdown list, the text from the dropdown replaces the text that they typed.
Now, I ...
0
votes
0answers
15 views
Large Data Populating Delay in Autocomplete in spite of Caching
I am invoking autocomplete with this ajax request:
source: function (request, response) {
jQuery.ajax({
url: handlerUrl,
dataType: "json",
...
1
vote
3answers
65 views
Use Google Suggest with JavaScript
I want to add the autocomplete / suggest feature of the Google Search to an input in a HTML page.
If I open a URL like this with Firefox:
...
0
votes
0answers
46 views
Jquery Autocomplete Multiple Values and Multiple Labels
I have a two fields, one hidden and one a text input. I am receiving the information from a remote PHP file, which gives the information in a JSON format (value and label).
What I'm trying to do is ...
0
votes
0answers
23 views
JS Autocomplete container issue on IE9 [closed]
Here is the link for my site
http://www.4hotels.co.uk/test/aberdeen.html
Autocomplete is applied to the Destination/hotel name field. Autocomplete is working on all browser including IE8, except ...
0
votes
1answer
39 views
Dynamically assign variable to jquery autocomplete query string
I'm coding form where a user can submit playlists. There is an 'artist' field and a 'song' field. Both are input type 'text'.
I'm attempting to use jquery's autocomplete functionality in both fields. ...
0
votes
1answer
36 views
Textarea for Javascript language with autocomplete and syntax highlighting
I have found it before, a textarea for javascript with autocomplete and syntax highlighting.
but i forgot what is the name of the component, i have googled it but not yet found any luck.
it's not:
...
6
votes
1answer
79 views
Jquery AutoComplete vs Gmail AutoComplete
What makes gmail autocomplete much faster than jquery autocomplete?
Everytime I type something in jquery, I need to pause for several millisecond (noticeable) stop before the choice come out, compare ...
0
votes
0answers
57 views
Trigger Jquery Autocomplete manually with predefined data in textbox
Here is my code
$("#textbox-id-recipient").autocomplete({
//define callback to format results
source: function(request, response) {
var matcher = new RegExp( "^" ...
1
vote
2answers
78 views
How to bind keypress event in jquery autocomplete?
As you can see in http://jsfiddle.net/hn838/4/ 'click' is working fine for autofiller, But I want to trigger same code on enter key keypress also, but it is not working for me. My code is here for ...
0
votes
1answer
47 views
How to bind click event with jQuery autocomplete?
I am creating a searchbox by using jQuery autocomplete.I want to trigger a click event when I click on a corresponding li from the autocomplete list. I am writing as:
...