Created
April 7, 2020 00:17
-
-
Save nuhil/b30fe8cfc4e59cdae018ec025a3bc2be to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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