I had a previous version of jquery.autocomplete and whenever i selected an item i am able to have another function parse the selected value.
now i am using the v1.1 plugin found at http://jquery.bassistance.de/autocomplete/demo/ and i need to know which function i can use so i can parse the selected value.
thanks.
function Itemselected(li) {
$.ajax({
url: 'default2.aspx?w='+li.value,
success: function(data) {
//more code here
}
});
}