tags:

views:

41

answers:

3

Hi,

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?

+2  A: 

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.

Pekka
+2  A: 

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.

Forlan07
+3  A: 

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:

Daniel Vassallo
Brilliant. Thanks guys. I have been writing pure jQuery for about a year now and wanted to go back and fill in all the gaps in my knowledge about vanilla javascript. Events being one of those gaps.
elduderino