Guest User

Untitled

a guest
Dec 11th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function applycss(css){
  2. var head = document.getElementsByTagName('head')[0];
  3. var s = document.createElement('style');
  4. s.setAttribute('type', 'text/css');
  5. s.appendChild(document.createTextNode(css));
  6. head.appendChild(s);
  7. }
  8. applycss(`
  9. // css from userstyles.org without the @-moz-document wrapper
  10.  
  11.  
  12. `);
Add Comment
Please, Sign In to add comment