diff --git a/src/jquery.autocomplete.js b/src/jquery.autocomplete.js index 94b5934..5c619d6 100644 --- a/src/jquery.autocomplete.js +++ b/src/jquery.autocomplete.js @@ -208,8 +208,10 @@ onFocus: function () { var that = this; + that.fixPosition(); - if (that.options.minChars === 0 && that.el.val().length === 0) { + + if (that.el.val().length >= that.options.minChars) { that.onValueChange(); } },