[jQuery] IE, change event, and bubbling
I'm using event bubbling to bind elements added dynamically. However,
when I do something like this:
$('body').change(function(event) {
alert("change event!");
});
it will only fire the alert box on FF but not in IE. However, if I use
a click event like this:
$('body').click(function(event) {
alert("click event!");
});
this works in IE! Why does the change event not register in IE?