Skip to content

Instantly share code, notes, and snippets.

@mrenouf
Created October 12, 2012 15:50
Show Gist options
  • Save mrenouf/3879897 to your computer and use it in GitHub Desktop.
Save mrenouf/3879897 to your computer and use it in GitHub Desktop.
els = document.getElementsByTagName('li');
for(i = 0; i < els.length; i++) {
els[i].addEventListener('click',
function() {
alert(i);
},
false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment