Rate this script:  I Love it  /   I Hate it

Automatically reload stylesheets on HTML document


Code


function updateStylesheets() {
        var i,a,s;
        a=document.getElementsByTagName('link');
        for(i=0;i<a.length;i++) {
                s=a[i];
                if(s.rel.toLowerCase().indexOf('stylesheet')>=0&&s.href) {
                        var h=s.href.replace(/(&|\\?)forceReload=d /,'');
                        s.href=h+(h.indexOf('?')>=0?'&':'?')+'forceReload='+(new Date().valueOf());
                }
        }
}

setInterval(updateStylesheets, 1000);
 

 

 
Automatically reload stylesheets on HTML document scripts | Automatically reload stylesheets on HTML document snippet | Automatically reload stylesheets on HTML document example | Automatically reload stylesheets on HTML document tutorial | Automatically reload stylesheets on HTML document code