Skip to content

Instantly share code, notes, and snippets.

@cnocon
Last active December 31, 2015 01:09
Show Gist options
  • Save cnocon/7912034 to your computer and use it in GitHub Desktop.
Save cnocon/7912034 to your computer and use it in GitHub Desktop.
wrong!
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