I have a typeahead textfield from bootstrap. What I want to do is: When you click on an item from typeahead list they open a popover and it will be placed on the textfield. Is t
Although the updater option is not documented, you can use it to do something when an item is selected : Demo (jsfiddle)
updater
$('#myTypeahead').typeahead({ source: source, updater: function(item) { // Do something here, `item` is the selected item return item; } });