How do you trigger jQuery UI\'s AutoComplete change event handler programmatically?
Hookup
$(\"#CompanyList\").autocomplete({ s
Here you go. It's a little messy but it works.
$(function () { var companyList = $("#CompanyList").autocomplete({ change: function() { alert('changed'); } }); companyList.autocomplete('option','change').call(companyList); });