Reputation: 10761
I've googled this but can't find a satisfactory answer. Which versions of Internet explorer, if any, implement the W3C DOM level 2 event model?
Upvotes: 6
Views: 1143
Reputation: 344521
IE 9 should be the first IE version to add the W3C event model in addition to their proprietary model according to Wikipedia.
Further reading:
Upvotes: 7
Reputation: 11415
Microsoft does not follow the W3C model up until Internet Explorer 8, as their own model was created prior to the ratification of the W3C standard. Internet Explorer 9 is supposed to follow DOM level 3 events.
That's what can be found here.
Upvotes: 2
Reputation: 449783
I think no browser does completely at the moment.
An excellent resource on which event is implemented in what browser is the quirksmode.org compatibility table.
Also read the introduction to events on the same site.
Upvotes: 2