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?
|
|
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. |
||
|
|
|
|
If you want to copy some elements, than try using Node.cloneNode(true) together with Node.appendChild |
||
|
