how can I attach an onchange function in a jqueryUI combobox? Here is my code:
$(\".cmbBox\").combobox({ change:function(){ alert($(this).val()
In fact, there's already a "hook" for the onchange event.
Just change the following line for the method call or the callback that you want:
autocompletechange: "_removeIfInvalid"