Skip to content

Instantly share code, notes, and snippets.

@degt
Created May 2, 2017 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save degt/2b2597d9bf9876e9c354fc7c95fdbfda to your computer and use it in GitHub Desktop.
Save degt/2b2597d9bf9876e9c354fc7c95fdbfda to your computer and use it in GitHub Desktop.
Remove Stylesheet with name 'base*'
//Remove Base css
$('link').each(function(index, ele){
var href = $(ele).attr('href');
var regex = /base/;
if(regex.test(href)){
$(ele).remove();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment