Skip to content

Instantly share code, notes, and snippets.

@carltondickson
Created September 18, 2015 11:43
Show Gist options
  • Save carltondickson/d5b87aca542c3ad793e3 to your computer and use it in GitHub Desktop.
Save carltondickson/d5b87aca542c3ad793e3 to your computer and use it in GitHub Desktop.
Toggle stylesheet visibility
var stylesheetIndex = 0;
var action = document.styleSheets[stylesheetIndex].disabled === false ? "Disabled " : "Enabled ";
document.styleSheets[stylesheetIndex].disabled = !document.styleSheets[stylesheetIndex].disabled;
console.log( action + "stylesheet:" + document.styleSheets[stylesheetIndex].href );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment