Created
October 23, 2015 14:59
-
-
Save rubysolo/bf69886785ac60e2bdb0 to your computer and use it in GitHub Desktop.
delegated binding
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<button id="the-button">Hey</button> | |
</div> | |
<script> | |
$(document).on('click', '#the-button', function(e) { | |
// handler is bound to document, but only fires if event originated from #the-button | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment