style attribute in the non-standard style.cssText property.Workaround
Though in Firefox you can write:
var style = el.getAttributeNode('style').value;
IE requires that you instead say:var style = el.style.cssText;This means that any iterations through the
Node.attributes NamedNodeMap must be special-cased when the name is "style".

0 comments:
Post a Comment