Bootstrap 3 has removed Typeahead in favor of the library found at https://github.com/twitter/typeahead.js. I have successfully integrated it for remote data fetching, but am facing issues with autocompletion. Despite including the necessary CSS from https://github.com/jharding/typeahead.js-bootstrap.css, the autocompletion is not working as expected.
Any help or suggestions would be greatly appreciated. You can view the issue on the following JSFiddle link: http://jsfiddle.net/KrtB5/
HTML
<body>
<div class="container">
<label>State</label> <input type="text" class="typeahead form-control" />
</div>
</body>
Javascript:
$('.typeahead').typeahead({
name: 'Some name',
local: ['test', 'abc', 'def']
})