Skip to content

Instantly share code, notes, and snippets.

@adboio
Created July 5, 2020 19:53
Show Gist options
  • Save adboio/fdbd06553304477e2a09b65b7cdb2372 to your computer and use it in GitHub Desktop.
Save adboio/fdbd06553304477e2a09b65b7cdb2372 to your computer and use it in GitHub Desktop.
var colorButton = document.getElementById("colorChangeButton");
colorButton.addEventListener("click", function() {
document.body.style.backgroundColor = 'orange';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment