Jquery Ui Autocomplete Fire New Event After Selecting An Item
I am using jQuery UI autocomplete and I am trying to implement some code where once the user has picked an item from the autocomplete dropdown it calls another function. I have loo
Solution 1:
Use Autocomplete's select: option. Something like.
select: function (event, ui){
alert("|" + $("#targetID").val() + "|1stAlert");
}
Post a Comment for "Jquery Ui Autocomplete Fire New Event After Selecting An Item"