How do you trigger jQuery UI\'s AutoComplete change event handler programmatically?
Hookup
$(\"#CompanyList\").autocomplete({ s
Another solution than the previous ones:
//With trigger $("#CompanyList").trigger("keydown"); //With the autocomplete API $("#CompanyList").autocomplete("search");
jQuery UI Autocomplete API
https://jsfiddle.net/mwneepop/