Skip to content

Instantly share code, notes, and snippets.

@Kcko
Created May 10, 2018 11:37
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 Kcko/54d93d11d2bee3f9a1459b972c4ff92e to your computer and use it in GitHub Desktop.
Save Kcko/54d93d11d2bee3f9a1459b972c4ff92e to your computer and use it in GitHub Desktop.
// CLICK on button
<div class="box">
<button>Button</button>
</div>
$( "body" ).on( "click", ".box", function(e) {
e.delegateTarget; // body
e.currentTarget; // .box
e.target; // button
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment