Add a link stylesheet dynamically in the <head>

crash, dom, internet-explorer, javascript

Solution

That was a simple cross reference javascript bug. Have a nice day.

Problem

How to add a link stylesheet reference to the head of a document ? I've found this code but it's not working with all browsers, it crashes my IE7 : ``` var ss = document.createElement("link"); ss.type = "text/css"; ss.rel = "stylesheet"; ss.href = "style.css"; document.getElementsByTagName("head")[0].appendChild(ss); ``` Thanks

Original source