I'm using jQueryUI autocomplete, and I have a function mapped to the select event, e.g.:

$("#someId").autocomplete({
    source: someData,
    select: function (event, ui) { ... },
    focus: function (event, ui) { ... }
});

I have a special case: The user has focused on an item in the autocomplete drop-down (but not selected it) and I need to trigger the select event manually from a different function. Is this possible? If so, how?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

You could do:

$("#someId").trigger("autocompleteselect");
link|improve this answer
this did not work at my app in chromium 140.0.835.200 – palmic Mar 27 at 9:02
feedback

From outside:

$($('#someId').data('autocomplete').menu.active).find('a').trigger('click');

An example how to setup select triggering at pressing of horizontal arrows keys from inside of "open" autocomplete event:

$('#someId').autocomplete({
    open: function(event, ui) {
        $(this).keydown(function(e){
            /* horizontal keys */
            if (e.keyCode == 37 || e.keyCode == 39) {
               $($(this).data('autocomplete').menu.active).find('a').trigger('click');
            }
        });
    }
});

Unfortunately that nice way how to solve this marked as "success" did not work at my app in chromium 140.0.835.200

link|improve this answer
feedback

use:

$("#someId").trigger("select");

or

$("#someId").select();

http://api.jquery.com/select/
http://api.jquery.com/trigger/

link|improve this answer
3  
Thanks. I appreciate your answer, but not the condescending tone. I had already done quite a few google searches, but couldn't see what was right in front of me for some reason. I think that happens to all of us sometimes... – spooky note Oct 3 '11 at 10:35
sorry, didn't meant to be impolite. Going to commit seppuku immediately :D – Marek Sebera Oct 3 '11 at 10:48
That's alright. Thanks for apologizing. – spooky note Oct 3 '11 at 11:03
feedback

Your Answer

 
or
required, but never shown

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