Created
April 7, 2020 20:43
-
-
Save npearce/6a8947d0884dac33c1d23353aa236e73 to your computer and use it in GitHub Desktop.
JQuery event best practices
This file contains 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
// One does this to be happy: | |
$(document).on('click', '#some_id', () => { | |
// Something | |
}) | |
// One does this to be sad | |
$('#some_id').click(() => { | |
// Something | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment