Skip to content

Instantly share code, notes, and snippets.

@YannickFricke
Created June 7, 2021 10:35
Show Gist options
  • Save YannickFricke/5de565248af835ef21138d66be626717 to your computer and use it in GitHub Desktop.
Save YannickFricke/5de565248af835ef21138d66be626717 to your computer and use it in GitHub Desktop.
Class Toggler
document.querySelectorAll(".fake-button").forEach((element) =>
element.addEventListener("click", () => {
document.querySelector(element.dataset["target"]).classList.toggle("active");
})
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment