I found that jQuery change event on a textbox doesn\'t fire until I click outside the textbox.
HTML:
Reading your comments took me to a dirty fix. This is not a right way, I know, but can be a work around.
$(function() { $( "#inputFieldId" ).autocomplete({ source: function( event, ui ) { alert("do your functions here"); return false; } }); });