Skip to content

Instantly share code, notes, and snippets.

@mig1098
Created February 9, 2016 21:39
Show Gist options
  • Save mig1098/baa164c46ba31d0f882f to your computer and use it in GitHub Desktop.
Save mig1098/baa164c46ba31d0f882f to your computer and use it in GitHub Desktop.
var css = '.QuickViewBtn { display: none !important; }',
head = document.head || document.getElementsByTagName('head')[0],
style = document.createElement('style');
style.type = 'text/css';
if (style.styleSheet){
style.styleSheet.cssText = css;
} else {
style.appendChild(document.createTextNode(css));
}
head.appendChild(style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment