Does typeahead feature support remote data source in version 2.0.3 of twitter-bootstrap?
The link to typehead functionality http://twitter.github.com/bootstrap/javascript.html#typeahead
Did you try:
$('.typeahead').typeahead({
source: function (query, typeahead) {
return $.post('/typeahead', { query: query }, function (data) {
return typeahead.process(data);
});
}
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With