Created
April 9, 2015 20:41
-
-
Save danielronnkvist/f0653b6ecb936de44dec to your computer and use it in GitHub Desktop.
Make it fat
This file contains 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
function makeFat(el){ | |
el.style.fontWeight = "bold"; | |
el.style.border = "10px solid"; | |
if(typeof(el.childNodes) === "array"){ | |
el.childNodes.forEach(function(elem){ | |
makeFat(elem); | |
}); | |
} | |
} | |
makeFat(document.body); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment