I\'m trying to use jQuery UI Autocomplete to bring up a list of names of people in a MySQL Database. The basic function is working - when you type in two or more letters a l
I had similar problem with typeahead
I used focus() and the problem was solved.
Example:
$(ele).typeahead({source: $scope.varMap['abc'], items: undefined}); $(ele).focus();