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 the results to highlight various other elements on my page.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

There are two ways you can accomplish this.

  1. Use the source option to define logic for filtering results. This logic would be identical to the widget's source code:

    $("#auto").autocomplete({
        source: function (request, response) {
            var results = $.ui.autocomplete.filter(source, request.term);
    
            $("#results").text(results.join(", "));
    
            response(results);
        }
    });
    

    Example: http://jsfiddle.net/andrewwhitaker/27S6p/

    If you're using a remote datasource, this is easy to integrate into your AJAX response.

  2. If you needed a solution for multiple autocomplete widgets, you could override the _response function to raise a special event that you can bind to:

    var __response = $.ui.autocomplete.prototype._response;
    $.ui.autocomplete.prototype._response = function(content) {
        __response.apply(this, [content]);
        this.element.trigger("autocompletesearchcomplete", [content]);
    };
    
    $("#auto").autocomplete({
        source: src
    }).bind("autocompletesearchcomplete", function (event, results) {
        $("#results").text(results.join(", "));
    });
    

    Example: http://jsfiddle.net/andrewwhitaker/V9Vun/

    I would only use this solution if you have several widgets on the page and you need to do this for all of them.

Neither of them are ideal but should get the results you're looking for.

link|improve this answer
You are awesome. Superbe answer! – Randomblue Sep 7 '11 at 1:00
@Randomblue: Thanks! I just wish this was built-in. Glad I could help! – Andrew Whitaker Sep 7 '11 at 1:01
feedback

Take a look at result event. I think it will give you the array of objects which it shows in the auto complete.

http://docs.jquery.com/Plugins/Autocomplete/result#handler

link|improve this answer
1  
Is that possible with jQueryUI's autocomplete, too? – Thorsten Sep 6 '11 at 20:35
Yeah, don't think it is... – Randomblue Sep 6 '11 at 20:36
feedback

You can access the options with

$('input[type="text"]').autocomplete({
    source: availableTags,
    open: function( event, ui ) {
        var autocomplete = $( this ).data( "autocomplete" ),
        menu = autocomplete.menu;
        console.log(menu.element.children());
    }
});

menu.element.children() gives you the HTML List items. You can easily parse them (Strip the HTML) and build an array from that and pass it to your highlight function.

JSFiddle

Edit2: The following Edit does not return the expected values.

Edit: Instead of accessing menu.element, go for console.log(autocomplete.options.source);

New Fiddle

link|improve this answer
It works, but yuck! There must be a better way of doing this... – Randomblue Sep 6 '11 at 20:43
There should be a better way, but I don't think there actually is... You could of course write a plugin to do this work for you, if you need that more often. – Thorsten Sep 6 '11 at 20:47
I was a fool, there is a much easier solution, check the update :-) – Thorsten Sep 6 '11 at 21:02
That's the whole source. I want the source filtered depending on what the user started typing. – Randomblue Sep 6 '11 at 21:09
Ahhhh, damn, right, then ignore my edit ;-) – Thorsten Sep 6 '11 at 21:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.