Advertisement
congdantoancau

Disable Page CSS

Apr 30th, 2018
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // DISABLE PAGE CSS
  2. document.head.parentNode.removeChild(document.head);
  3. // or
  4. for ( i=0; i<document.styleSheets.length; i++) {
  5.     void(document.styleSheets.item(i).disabled=true);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement