Skip to content

Instantly share code, notes, and snippets.

@bstonedev
Created June 29, 2020 00:15
Show Gist options
  • Save bstonedev/4672548fce248dfe9ac615c0a27b7155 to your computer and use it in GitHub Desktop.
Save bstonedev/4672548fce248dfe9ac615c0a27b7155 to your computer and use it in GitHub Desktop.
addEventListener() Methods
document.getElementById("myBtn").addEventListener("click", function(){
document.getElementById("demo").innerHTML = "Hello World";
});
document.getElementById("myBtn").addEventListener("click", myFunction);
function myFunction() {
document.getElementById("demo").innerHTML = "Hello World";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment