I'm trying to get IE8 support in a project of mine and having a tough time converting addEventListener to addEvent (from: http://ejohn.org/projects/flexible-javascript-events/)
So, with his code I have an event setup like (source here):
_addEvent(eventableIframes[i], 'mousemove', function (e) { utilBarHandler(e); }); However, when it gets to utilBarHandler, "e" is null and IE8 gives me an "object required" error here on line 783. I'm assuming the object required is the event object since its literally just null when I log out e at the top of the function.
Also, this happens for every event in that loop that requires the event object such as shortcutHandler and shortcutUpHandler.
Update: just in case people are missing it, this post has a bunch of links that highlight specific lines.