Reputation: 14614
Why doesn't this code work in Internet Explorer 9?
function calc() {
alert('aaa');
}
$('body').delegate('input', 'change', function(){
// In here, $(this) is the input that has changed
calc();
});
$('body').delegate('select', 'change', function(){
calc();
});
Upvotes: 0
Views: 1686
Reputation: 92274
As far as I know, change event doesn't bubble up in IE. $.delegate
only works for events that bubble. Are you saying this works for earlier versions of IE?
Upvotes: 2
Reputation: 61589
Are you ensuring that your JQuery calls are in the DOMReady event:
$(function() {
$("body").delegate("input, select", "change", function() {
calc();
}
});
Upvotes: 0