how can I attach an onchange function in a jqueryUI combobox? Here is my code:
$(\".cmbBox\").combobox({ change:function(){ alert($(this).val()
It says in the "Events" section of the documentation, that you handle a change like this...
$( ".selector" ).autocomplete({ change: function(event, ui) { ... } });