<input name="shop[shop]" id="shop" class="form-control input_text" autocomplete="off" required="required" type="text">
init_typeahead = function(){
var input = $('input[name="shop[shop]"]');
input.unbind();
var all_university_arr = {json_encode($all_shop)};
input.typeahead({
source: all_shop_arr,
autoSelect: true
});
input.on('change',function() {
var current = input.typeahead("getActive");
console.log(current);
});
};
init_typeahead();
Скрипт вызывается при выборе подгруженных данных и при снятии активности ячейки. Как можно решить такую проблему?