Skip to content

Instantly share code, notes, and snippets.

@devmobasa
Last active April 26, 2017 04:55
Show Gist options
  • Select an option

  • Save devmobasa/1088ed44195db5281b458ed39ea2b645 to your computer and use it in GitHub Desktop.

Select an option

Save devmobasa/1088ed44195db5281b458ed39ea2b645 to your computer and use it in GitHub Desktop.
Mouse click event - Coding Blast - www.codingblast.com
let button = document.getElementById('btnClick');
button.addEventListener('click', onButtonClick);
function onButtonClick(event: MouseEvent) {
console.log(event.target);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment