I want to show a bootstrap popover
when hovering over the typeahead autocomplete drop-down
suggestions. I referred this answer.
$('#myTypeahead').typeahead({
source: source,
updater: function(item) {
$('#myTypeahead').popover({content: item}).popover('show');
return item;
}
});
But here popover is showing only after selecting the drop-down menu. I want to show popover when hovering the menu not selecting.