diff --git a/src/jquery.autocomplete.js b/src/jquery.autocomplete.js index da737b9..94b5934 100644 --- a/src/jquery.autocomplete.js +++ b/src/jquery.autocomplete.js @@ -346,8 +346,11 @@ var that = this; that.stopKillSuggestions(); that.intervalId = window.setInterval(function () { - that.el.val(that.currentValue); - that.hide(); + if (that.visible) { + that.el.val(that.currentValue); + that.hide(); + } + that.stopKillSuggestions(); }, 50); },