diff --git a/src/jquery.autocomplete.js b/src/jquery.autocomplete.js index f2114bf..6988bf5 100644 --- a/src/jquery.autocomplete.js +++ b/src/jquery.autocomplete.js @@ -760,7 +760,11 @@ suggestion = that.suggestions[index]; that.currentValue = that.getValue(suggestion.value); - that.el.val(that.currentValue); + + if (that.currentValue !== that.el.val()) { + that.el.val(that.currentValue); + } + that.signalHint(null); that.suggestions = []; that.selection = suggestion;