Details
-
Bug
-
Resolution: Duplicate
-
Major
-
None
-
6.2-rc-1
-
IE11
-
Unknown
-
Description
protoype.js
function observeCustomEvent(element, eventName, responder) { if (element.addEventListener) { element.addEventListener('dataavailable', responder, false); } else { element.attachEvent('ondataavailable', responder); } }
error: Object doesn't support property or method 'attachEvent'
But IE11 is supposed to have addEventListener: http://msdn.microsoft.com/en-us/library/ie/ms536343%28v=vs.85%29.aspx
From what I see, my element does not have addEventListener nor attachEvent. Don't call me IE, they said...
Attachments
Issue Links
- duplicates
-
XWIKI-11066 Issues with the "attachEvent" method on IE11
- Closed