Skip to content

Instantly share code, notes, and snippets.

@viktorkelemen
Created January 23, 2012 03:05
Show Gist options
  • Save viktorkelemen/1660211 to your computer and use it in GitHub Desktop.
Save viktorkelemen/1660211 to your computer and use it in GitHub Desktop.
test
var e = document.getElementsByTagName("div");
for (var i = 0; i < e.length; i++) {
e[i].onclick = function() {
console.log("Div number " + i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment