Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save manekinekko/b8a1be9a9ba1a8411ec5b163480698b1 to your computer and use it in GitHub Desktop.
Save manekinekko/b8a1be9a9ba1a8411ec5b163480698b1 to your computer and use it in GitHub Desktop.
const elements = document.querySelectorAll('button');
const len = elements.length; // 8 par exemple
for(let i=0; i<len; i+=1){
elements[i].addEventListener('click', function() {
alert(i+1)
}, false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment