Last active
February 1, 2017 12:52
-
-
Save NickDeckerDevs/63c9f1630b1092da4af0 to your computer and use it in GitHub Desktop.
When doing growth driven design pages it is often difficult and time consuming to rework their entire structure. This script allows you to remove a css file using JS to remove all the styling in teh file. Not the best way to do it, but a nice hacky way to make it happen
This file contains 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 stylesheetUrl = 'http://cdn2.hubspot.net/hub/281759/hub_generated/style_manager/1400729881665/custom/page/css/brpt-dusk.min.css'; | |
var extraStylesheetUrl = 'http://cdn2.hubspot.net/hub/281759/hub_generated/style_manager/1420258246895/custom/styles/default/hs_default_custom_style.min.css'; | |
for ( i=0; i<document.styleSheets.length; i++) { | |
var url = document.styleSheets.item(i).href; | |
console.log(url) | |
if ( url == stylesheetUrl || url == extraStylesheetUrl ) { | |
void(document.styleSheets.item(i).disabled=true); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment