Skip to content

Instantly share code, notes, and snippets.

@nuhil
Created April 7, 2020 00:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nuhil/b30fe8cfc4e59cdae018ec025a3bc2be to your computer and use it in GitHub Desktop.
Save nuhil/b30fe8cfc4e59cdae018ec025a3bc2be to your computer and use it in GitHub Desktop.
function init() {
var link = document.getElementById("foo");
link.addEventListener("click", function changeColor() {
this.style.color = "burlywood";
});
}
init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment