my textbox has autocomplete functionality , where i have set autoFocus property to true
$( "#stateList" ).autocomplete({ autoFocus: true });
upon giving above property, my stateList autocomplete box get the first value selected and populated when user hits enter key or tab key.
i have been trying to achieve same functionality , when there is blur event on the "stateList" text box, and will automatically select the value which is been listed first.
my code here, where blur event is not been invoked http://jsfiddle.net/c6sWw/168/