Tagged Questions
1
vote
3answers
5k views
Jquery UI autocomplete select
I need some help with the code below.
$("#auto_cp").autocomplete({
minLength: 3,
//source
source: function(req, add) {
$.getJSON("friends.php?callback=?", req, function(data) {
...
1
vote
0answers
46 views
JQueryUI AutoComplete w/ Multi-Select - Remove Selection
I'm using the JQuery Auto-Complete widget, with multi-select, as shown in this fiddle: http://jsfiddle.net/Z26yv/.
Here's the code:
<label>Teams:</label>
<input type="text" ...
1
vote
1answer
24 views
wrapping jquery ui autocomplete results in a href
I use this function to wrap the results of the jquery ui autocomplete function in an hyperlink. It fails to do that. It just displays the label item. Any suggestion here?
...
0
votes
0answers
26 views
Jquery Autocomplete sets value to the old cursor position
I have a textarea. When I select value from my autocomplete list, it sets the value to
the old cursor position of my line. It should set the value to the latest cursor position.
...
2
votes
3answers
3k views
jquery UI autocomplete inside a modal ui dialog - suggestions not showing?
i am using the jquery ui autocomplete widget inside the jquery ui dialog. when i type in the search text, the textbox indents (ui-autocomplet-loading) but does not show any suggestions.
var ...
5
votes
2answers
1k views
JQueryUI 1.10.0 Autocompleter renderItem problems
I tried a solution regarding renaming 'autocomplete' to 'ui-autocomplete' (using JQueryUI 1.10.0, JQuery 1.8.3) and am still getting an error for:
TypeError: $(...).autocomplete(...).data(...) is ...
3
votes
3answers
944 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 ...
2
votes
2answers
1k views
Jquery / Json UI autocomplete Airport code
Im trying to use a Web Service to set an Airport code using Jquery UI autocomplete:
The WS is:
http://airportcode.riobard.com - http://airportcode.riobard.com/search?q=dallas&fmt=JSON
I can't ...
1
vote
1answer
38 views
When JQuery UI Autocomplete with Categories, how do I custom format the different categories?
When using JQueryUI Autocomplete with Categories, how do I custom format the different categories?
JQueryUI creates a ul that appends to after a #menu-container .
The script below simply populates ...
1
vote
2answers
223 views
Show JQuery UI Autocomplete suggestions on top of other elements
I'm using JQuery UI Autocomplete to suggest different cities on a map control. I usually have other divs showing content that interfere with the suggestions from the autocomplete. The divs appear on ...
1
vote
3answers
49 views
Issue with custom properties in jQuery UI Autocomplete
I'm running into an issue with custom properties while using jQuery UI's autocomplete functionality. For some strange reason, the autocomplete function will not allow me to use the make or id ...
0
votes
0answers
54 views
Enhanced jquery autocomplete popup
I am trying to add more functionality to my jquery autocomplete by adding a popup on focus. The problem that I am having is getting the popup to correctly inherit the dropdown.
1) When you click on ...
-1
votes
2answers
73 views
How join javascript files? [closed]
I tried join javascript files in one file, but everything resulted in conflict.
I need join:
1 jquery and my functions. Ok.
1 jquery-ui and jquery.ui.datepicker.
1 jquery.autocomplete.
How can i ...
0
votes
1answer
108 views
TextBox Loses Focus with jquery autocomplete select
I have been using jquery autocomplete, as soon as i select the value from autocomplete drop down textbox loses the focus,
How can i prevent it,
<script type="text/javascript">
...
0
votes
1answer
30 views
Categories with Autocomplete Jquery UI Integration
I want to add categories to the search results of a an Autocomplete widget like so http://jqueryui.com/autocomplete/#categories but I am having trouble figuring out how to integrate the code into my ...