How do you copy an inline style element in IE? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T07:10:40Z http://stackoverflow.com/feeds/question/875610 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/875610/how-do-you-copy-an-inline-style-element-in-ie 0 How do you copy an inline style element in IE? lambacck 2009-05-17T22:08:37Z 2009-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#875622 0 Answer by Rafael for How do you copy an inline style element in IE? Rafael 2009-05-17T22:12:48Z 2009-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#875627 0 Answer by lambacck for How do you copy an inline style element in IE? lambacck 2009-05-17T22:16:21Z 2009-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 = '&lt;p&gt;x&lt;/p&gt;&lt;style type="text/css"&gt;' + innerHTML + '&lt;/style&gt;'; return tmp_div.getElementsByTagName('style')[0]; } </code></pre> <p>The magic is that you need the &lt;p&gt; tag in the innerHTML of the tmp_div. Without it, IE does not accept the style element.</p>