Advertisement
flyingfisch

Untitled

Dec 30th, 2015
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var links = document.getElementsByTagName("link");
  2. var hasStyleSheet = false;
  3.  
  4. for (var i = 0; i < links.length; i++) {
  5.   if (links[i].type == "text/css") {
  6.     hasStyleSheet = true;
  7.   }
  8. }
  9.  
  10. if (!hasStyleSheet) {
  11.   var el = document.getElementsByTagName("body")[0].style;
  12.  
  13.   el.maxWidth = "40%";
  14.   el.margin = "0 auto";
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement