I am wondering how to grab the selected item\'s text value on jquery autocomplete.
I have initialised jquery as following :
$(document).ready(function ()
The ui parameter has an item property with the selected text
ui
item
function AutoCompleteSelectHandler(event, ui) { var selectedObj = ui.item; alert(selectedObj.value); }
source: http://jqueryui.com/demos/autocomplete/#event-select go to tab "Events" and then event "Select"