Skip to content

Instantly share code, notes, and snippets.

@jonsamp
Last active June 4, 2017 21:06
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 jonsamp/3f2d484be1fa937e8d0742f3a0f6454b to your computer and use it in GitHub Desktop.
Save jonsamp/3f2d484be1fa937e8d0742f3a0f6454b to your computer and use it in GitHub Desktop.
JavaScript Tips Tab: onTipButtonClick I
function onTipButtonClick() {
var tipButton = document.querySelector('.tip-button');
tipButton.addEventListener('click', function() {
console.log('RIP clippy');
});
}
onTipButtonClick();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment