[eluser]joe.afusco[/eluser]
Not sure why codeigniter would be causing the issue, but I might as well ask. Trying to set up typeahead, and I have it working outside of CodeIgniter. When I stick this code:
Code:
<div class="well">
<input type="text" class="span3" id="typeahead" data-provide="typeahead">
</div>
[removed][removed]
[removed][removed]
[removed]
$(function() {
$("#typeahead").typeahead({
source: ["YouTube", "Google", "Facebook"]
});
});
[removed]
in the body of my page, it doesn't work, but when I try it in its own page, it works fine. any idea on why this wouldn't work?