Pretty straight forward question here. I have this code right here.
<script src="{{ STATIC_URL }}js/typeahead_data_countries.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.typeahead').typeahead({
source: country_array
})
});
</script>
Where typeahead_data_countries is: var country_array = new Array("Afghanistan", "Albania", "Algeria",...);
The variable gets loaded properly, but the whole typeahead is not working. If I do however:
<input type="text" style="margin: 0 auto;" data-provide="typeahead" data-items="4" data-source='["Afghanistan", "Albania"]'/>
it works, but I don't want that...