I\'m working on a search functionality for my website and I\'m using Bootstrap\'s typeahead to show the results. So far so good. But what I want is to extend the function so tha
Use the highlighter method:
$('.typeahead').typeahead({ highlighter: function(item){ return "......."; } });
Method used to highlight autocomplete results. Accepts a single argument item and has the scope of the typeahead instance. Should return html.