views:

206

answers:

1

I just found out that onchange event does not bubble in MSIE. I hopped to http://www.quirksmode.org/ to see if I could find other events which are not supported by IE. However I do not see any chart listing onchange event as an event that does not bubble in MSIE. Where can I find such a char?

+2  A: 

Actually, MSDN is quite explicit about their implementation not bubbling (unsurprisingly, doing complete opposite of what DOM Level 2 Events module specifies).

I'm not sure why PPK table claims bubbling as untestable in IE. Could be an oversight on his part.

kangax