Hey people!
Im starting to work with CodeIgniter and i need to code one autosuggestion
box with bootstrap typeahead and it's not working inside the project even
with a simple example.
The example is this one:
$('#ooo').typeahead({number: 3 , source: ['youtube', 'google', 'yahoo']});
<input type="text" id="ooo" data-provide="typeahead"/>
And the error:
$(function () {
$('body').on('focus.typeahead.data-api', '[data-provide="typeahead"]',
function (e) {
---> Uncaught TypeError: Object #<Object> has no method 'on'
Someone faced the same problem or at least someone know what is happening?