У меня есть следующий скрипт, который работает до тех пор, пока #txtAllowSearch является плоским html:
$(document).ready(function(){
$("#txtAllowSearch").autocomplete({
source: "test_array.aspx",
delay: 0,
select: function (event, ui) {
$("#txtAllowSearch").val(ui.item.value); // display the selected text
$("#txtAllowSearchID").val(ui.item.id); // save selected id to hidden input
}
});
});
Это перестает работать, как только #txtAllowSearch динамически создается javascript / jquery.
Нужно ли использовать jqueries live, чтобы заставить это работать?