I have a little problem with CSS modifications in Internet Explorer. When I add an new CSS style in <head>, IE doesn't reload the page with the new CSS injected. But when I change CSS property of an element, it works! This code works perfectly on Firefox, so I don't understand why it doesn't work in IE.
Do you have any idea to do that the head modification work ?
if(document.createStyleSheet) {
document.createStyleSheet('http://www.xxxx.com/style.css');
} else {
newnode=document.createElement('link');
newnode.id='newStyle';
newnode.media="all";
newnode.rel="stylesheet";
newnode.type="text/css";
newnode.href='http://www.xxxx.com/style.css';
document.getElementsByTagName('head')[0].readOnly=false;
document.getElementsByTagName('head')[0].appendChild(newnode);
}