Skip to content

Instantly share code, notes, and snippets.

@komagata
Created September 23, 2017 11:33
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 komagata/14748c24e63c5455b38ae03e628cc1b0 to your computer and use it in GitHub Desktop.
Save komagata/14748c24e63c5455b38ae03e628cc1b0 to your computer and use it in GitHub Desktop.
Event delegation
const ul = document.querySelector("ul");
ul.addEventListener("click", (event) => {
if (event.target.tagName === "LI") {
console.log("FOO↑↑↑");
}
});
<ul>
<li>foo</li>
<li>bar</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment