Skip to content

Instantly share code, notes, and snippets.

@apelmahmudDev
Last active August 11, 2021 14:32
Show Gist options
  • Save apelmahmudDev/3148c072923250740cdf9a94d2707108 to your computer and use it in GitHub Desktop.
Save apelmahmudDev/3148c072923250740cdf9a94d2707108 to your computer and use it in GitHub Desktop.
Event-bubble
document.querySelector('#signup').addEventListener('click', () => {
console.log('Sign up button click');
});
document.querySelector('#signin').addEventListener('click', () => {
console.log('Sign in button click');
});
@apelmahmudDev
Copy link
Author

event-example 2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment