I'm using bootstrap version 2.3.2. My question is, why when i type something it not show anything? Even though i'm using static source. Can someone explain to me what is wrong with my code? Thank you.
<input type="text" class="span3" data-provide="typeahead" id="typeahead">
<script src="http://code.jquery.com/jquery-1.10.0.min.js" type="text/javascript"></script>
<script src="js/bootstrap.js"></script>
<script>
$(function() {
$('#typeahead').typeahead({
source: ["Ayam", "Kambing", "Itik"]
});
});
</script>