Found the answer to my own problem! This will help save anyone a
headache if they ever come across the same problem:

http://www.johnvey.com/blog/2007/07/ie-does-not-bubble-form-select-element-onchange-events

On Feb 1, 9:09 am, ita <[EMAIL PROTECTED]> wrote:
> I'm usingeventbubbling to bind elements added dynamically. However,
> when I do something like this:
>
> $('body').change(function(event) {
>     alert("changeevent!");
>
> });
>
> it will only fire the alert box on FF but not in IE. However, if I use
> a clickeventlike this:
>
> $('body').click(function(event) {
>     alert("clickevent!");
>
> });
>
> this works in IE! Why does thechangeeventnot register in IE?

Reply via email to