Skip to content

Instantly share code, notes, and snippets.

@modos
Created July 31, 2022 05:56
Show Gist options
  • Save modos/bf32197ec63bef5c939fd7e6bd4ad4e5 to your computer and use it in GitHub Desktop.
Save modos/bf32197ec63bef5c939fd7e6bd4ad4e5 to your computer and use it in GitHub Desktop.
const buttons = document.querySelectorAll('.button');
buttons.forEach(button => {
button.addEventListener("click", clicked);
});
function clicked(e) {
const color = e.target.id;
document.body.style.backgroundColor = color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment