Skip to content

Instantly share code, notes, and snippets.

@SuN-80
Created March 8, 2017 14:34
Show Gist options
  • Save SuN-80/e7bf93956529eea9334e7fad59f4563f to your computer and use it in GitHub Desktop.
Save SuN-80/e7bf93956529eea9334e7fad59f4563f to your computer and use it in GitHub Desktop.
Keywords highlight fix for FULLTEXT indexes (devbridge Autocomplete)
formatResult: function (suggestion, currentValue) {
var keywords = currentValue.split(" ");
var suggest = suggestion.value;
$(keywords).each(function() {
suggest = suggest.replace(new RegExp('(' + this + ')(?![^<]*>|[^<>]*</)', 'gi'), '<strong>' + this + '</strong>');
});
return suggest;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment