Last active
December 31, 2015 01:09
-
-
Save cnocon/7912034 to your computer and use it in GitHub Desktop.
wrong!
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
window.onload= function(){ | |
var styleSet = { | |
boxShadow: "0 1px 3px rgba(0,0,0,0.5)", | |
textShadow: "1px 1px #000", | |
backgroundColor: "lightBlue", | |
padding: "1em", | |
margin: "2em 0" | |
} | |
var elements = document.getElementsByTagName('section'); | |
for (var e in elements) { | |
console.log("loop " + e) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment