Skip to content

Instantly share code, notes, and snippets.

@bitfishxyz
Created February 7, 2020 12:51
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/0195122b45998296bb8395ef617d0de9 to your computer and use it in GitHub Desktop.
Save bitfishxyz/0195122b45998296bb8395ef617d0de9 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(){
alert(i + 1)
}, true)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment