I'm doing a shim / polyfill to work with CustomEvents
to IE8, but I'm having a problem detecting when the event is not standard.
In IE8 each element may have a different list of available events, there is no possibility of executing a attachEvent
other than an available event by default on the element.
In the IE8 debugger, when we apply a watch in the context of the element ( this
in an element method) it shows a list object [Events]
which contains the available events even.
The problem is that I can not access this property other than through the debugger.
How can I access this list property, or is there any other way to find out which events are available in the context of the element?