Skip to content

Instantly share code, notes, and snippets.

@bantic
Created February 3, 2019 16:03
Show Gist options
  • Save bantic/7d262d7c2a1e11194ed350d89477cadf to your computer and use it in GitHub Desktop.
Save bantic/7d262d7c2a1e11194ed350d89477cadf to your computer and use it in GitHub Desktop.
let buttons = document.querySelectorAll('button');
buttons.forEach(button => {
if (button.innerText === "I'm a button") {
button.addEventListener('click', () => {
button.innerText = "I was clicked!";
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment