Hello,
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