Created
September 18, 2015 11:43
-
-
Save carltondickson/d5b87aca542c3ad793e3 to your computer and use it in GitHub Desktop.
Toggle stylesheet visibility
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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