Skip to content

Instantly share code, notes, and snippets.

@VictorMedeiros
Created August 2, 2016 17:53
Show Gist options
  • Save VictorMedeiros/d049c3d8a176e6050e3cea8abda19b33 to your computer and use it in GitHub Desktop.
Save VictorMedeiros/d049c3d8a176e6050e3cea8abda19b33 to your computer and use it in GitHub Desktop.
var button = document.getElementById('myButton');
button.addEventListener('click', function() {
console.log(this === button); // => true
this.innerHTML = 'Clicked button';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment