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
That was a simple cross reference javascript bug. Have a nice day.
Internet explorer will support innerHTML, though it adds reflow this would work:
In IE, you could try the createStyleSheet method? That takes URL as a parameter. I don't know whether there is an equivalent in FF/chrome though..
--Senthil