How do you copy an inline style element in IE? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T07:10:40Zhttp://stackoverflow.com/feeds/question/875610http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/875610/how-do-you-copy-an-inline-style-element-in-ie0How do you copy an inline style element in IE?lambacck2009-05-17T22:08:37Z2009-05-17T22:16:21Z
<p>IE does not allow writing to the innerHTML property of style or head elements. So how do you copy a style element from the head of one document to another?</p>
http://stackoverflow.com/questions/875610/how-do-you-copy-an-inline-style-element-in-ie/875622#8756220Answer by Rafael for How do you copy an inline style element in IE?Rafael2009-05-17T22:12:48Z2009-05-17T22:12:48Z<p>If you want to copy some elements, than try using <a href="https://developer.mozilla.org/En/DOM/Node.cloneNode" rel="nofollow">Node.cloneNode(true)</a> together with <a href="https://developer.mozilla.org/En/DOM/Node.appendChild" rel="nofollow">Node.appendChild</a></p>
http://stackoverflow.com/questions/875610/how-do-you-copy-an-inline-style-element-in-ie/875627#8756270Answer by lambacck for How do you copy an inline style element in IE?lambacck2009-05-17T22:16:21Z2009-05-17T22:16:21Z<pre><code>function copy_style(src_style_tag) {
var tmp_div = document.createElement('div');
var innerHTML = src_style_tag.innerHTML;
tmp_div.innerHTML = '<p>x</p><style type="text/css">' + innerHTML + '</style>';
return tmp_div.getElementsByTagName('style')[0];
}
</code></pre>
<p>The magic is that you need the <p> tag in the innerHTML of the tmp_div. Without it, IE does not accept the style element.</p>