Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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},
                                search:function(event,ui){do y}});

$("something else").keypress(function(eventobject){*trigger autocomplete "select"*});

What code do I put in trigger autocomplete "select"

share|improve this question

1 Answer

up vote 12 down vote accepted

Use the "Search" method: http://jqueryui.com/demos/autocomplete/#method-search

$("something").autocomplete(/* options */);
$("somethingelse").click(function () {
    $("something").autocomplete('search', 'demo-value');
});
share|improve this answer
1  
Thanks Doc, sometimes it right infront of your face in the docs and you just can't see it. – tjb Dec 15 '10 at 9:36
1  
for me this doesn't trigger the select event :) – Ionut Popa Apr 4 '12 at 14:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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