I have a form where i attach the OnChange method like
$(document).ready(function () {
$('#fieldId').change(function () {
...
}
}
But i have the case when i add a new record with the Id "fieldId" from a function as
function addTeamMember() {
var newItem= "<input id='fieldId' type='text'>"
$("#other").append(newItem);
...
}
But the Change is not fired when i change the newly added field. Can somebody help me with an idea?
Thanks.