consider:
<div id="message"></div>
The jquery says:
var html_to_insert = '<div id="mynewdiv"><input id="myfield" name="myfield" type="text" value="" /></div>'
$('#message').html(html_to_insert);
The html result is as expected:
<div id="message"><div id="mynewdiv"><input id="myfield" name="myfield" type="text" value="" /></div></div>
The problem I am having is when I call the "myfield" it does not work:
$('#myfield').change(function(){
alert("field changed");
});
How can I fix this?
I believe the reason that it will not call it is because the field does not exist when the page first renders, but I am not sure how to fix it.