diff --git a/src/typeahead/dataset.js b/src/typeahead/dataset.js index fa154d9781..6ba28f35a1 100644 --- a/src/typeahead/dataset.js +++ b/src/typeahead/dataset.js @@ -141,9 +141,9 @@ var Dataset = (function() { $fragment = this._getSuggestionsFragment(query, suggestions); this.$lastSuggestion = $fragment.children().last(); - this.$el.html($fragment) - .prepend(this._getHeader(query, suggestions)) - .append(this._getFooter(query, suggestions)); + let newHtml = $([this._getHeader(query, suggestions),'
',this._getFooter(query, suggestions)].join('')); + newHtml.find('#__corejs-typeahead-suggestions-placeholder__').replaceWith($fragment); + this.$el.html(newHtml); }, _appendSuggestions: function appendSuggestions(query, suggestions) {