Threaded View
-
29 Nov 2012 1:29 AM #1
Ext.Element.getAttribute not working in IE10
Ext.Element.getAttribute not working in IE10
Hello,
given markup:
and running:HTML Code:<a id="linkId" class="logo-rFactor" download="rFactorPlugin" href="#">rFactor</a>
works fine in all browsers but IE10. In IE10, 'value' is null; However when examining the element in debugger,Code:var el = Ext.get('linkId'); var value = el.getAttribute('download');
I can see that :
orCode:el.dom.attributes["download"].value "rFactorPlugin" String
both return the correct value;Code:el.dom.getAttribute('download')
This leads me to conclusion that ext.js is not getting the attribute values in IE10 correctly.
Looks like we can't reproduce the issue or there's a problem in the test case provided.


Reply With Quote