﻿
// include this script in a page, then put 'disablecss' in the url somewhere and the css will vanish...
// e.g. http://www.example.com/page.html?disablecss
// Dominic Winsor, dhaus.com
if (document.URL.indexOf("disablecss")!=-1)
{
    for(i=0;i<document.styleSheets.length;i++) void(document.styleSheets.item(i).disabled=true);
    el = document.getElementsByTagName('*');
    for ( i=0; i<el.length; i++) void(el[i].style.cssText = '');
}