hi all, In my form, i have an autocomplete textbox field which sits in a div which is dynamically populated by ajax and the autocomplete functionality is working fine..after the user selecting the autocompleted value from the list in textbox, i need to do some operation on the same and get printed the resulted value on another textbox, how will i achieve this?
pls see code below
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("waitimg").innerHTML="";
document.getElementById("ajxform").innerHTML=xmlhttp.responseText;
$(function(){
$("#item_no").autocomplete("auto/finditem.cfm");
})
}
I have already created function to do this operation, so i need to call this function after the user selects the autocompleted value.
thanks in advance.