Skip to content

Instantly share code, notes, and snippets.

@ryanmorr
Created July 26, 2016 17:56
Show Gist options
  • Save ryanmorr/0e5cd1c10a16050ca6880777972dc711 to your computer and use it in GitHub Desktop.
Save ryanmorr/0e5cd1c10a16050ca6880777972dc711 to your computer and use it in GitHub Desktop.
Event delegation in 3 lines
function delegate(context, type, selector, fn) {
context.addEventListener(type, (e) => fn(e, e.target.closest(selector)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment