Selecting an item triggers 2 change events?
CoinCoderBuffalo opened this issue · comments
Jay commented
$("#parentIdInput").change(function(){
var current = $("#parentIdInput").typeahead("getActive");
console.log(current);
$(this).val(current.id);
});
I get two responses from this...
Jay commented
Fixed it after adding these two options:
changeInputOnSelect: false,
changeInputOnMove: false