Created
April 20, 2017 10:20
-
-
Save AJFaraday/8b383c4083ab9919f4445c6a8d3b5692 to your computer and use it in GitHub Desktop.
Don't do this
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
$('body').on( | |
'click', | |
'a#my_element', | |
function(e) { | |
e.preventDefault(); | |
$('body').on( | |
'click', | |
'a#my_element', | |
function(e) { | |
e.preventDefault(); | |
myActualFunction(); | |
} | |
} | |
); | |
// Result: clcking the link once does nothing, clicking it a second time does the work. | |
// Conclusion: I've been developing for 7 years and I'm still an idiot. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Aren't we all?