Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DaveEveritt/3637aba83d2414378212d210a99aca72 to your computer and use it in GitHub Desktop.
Save DaveEveritt/3637aba83d2414378212d210a99aca72 to your computer and use it in GitHub Desktop.
const [...elArray] = document.getElementsByClassName('class-name');
elArray.forEach( (el) => {
el.addEventListener("click", function() {
el.classList.toggle('some-class');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment