Hi, I am facing an issue in getting, selected value of autocompleter in javascript.
Issue:
On the onclick event of a button, I am calling a javascript function.
getAutoValue() {
var selectedValue = document.getElementById("auto").value;
alert(selectedValue);
}
where 'auto' is autocompleter's name.
I am not able to get the value of autocompleter(ajax). Is there any
possiblity to get the selected value of autocompleter.
Kindly help me.
Thanks in advance.

