Created
April 18, 2014 07:47
-
-
Save z-------------/11030081 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var font = "Comic Sans MS"; // set what font you want | |
| // the easy way | |
| document.body.style.fontFamily = font; | |
| // the more robust but slightly more complicated way | |
| var allElements = document.querySelectorAll("*"); | |
| for (i=0;i<allElements.length;i++) { | |
| allElements[i].style.fontFamily = font; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment