Skip to content

Instantly share code, notes, and snippets.

@bitfishxyz
Created February 7, 2020 12:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitfishxyz/e6c8de2b163f6aa28062ea49ef37b4f6 to your computer and use it in GitHub Desktop.
Save bitfishxyz/e6c8de2b163f6aa28062ea49ef37b4f6 to your computer and use it in GitHub Desktop.
var list = document.getElementsByTagName('li');
for (var i = 0; i < list.length; i++) {
list[i].addEventListener('click', function(i){
return function(){
alert(i + 1)
}
}(i), true)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment