[jQuery] Re: autocomplete click send focus back to input
I figured it out $("#myinput").autocomplete(_url,{ onItemSelect: function(){ $('#myinput').focus(); } }); although i couldnt find onItemSelect anywhere in the documentation On Oct 1, 8:46 pm, travisjbeck wrote: > are there any c
[jQuery] autocomplete click send focus back to input
are there any callbacks for me to hook into in order to send the "focus ();" back to my input box when someone selects or clicks and autocomplete item?