How do you trigger autocomplete “select” event manually in jQueryUI?

Here’s what worked for me:

$(this).data('ui-autocomplete')._trigger('select', 'autocompleteselect', {item:{value:$(this).val()}});

Leave a Comment