Skip to content

Instantly share code, notes, and snippets.

@AJFaraday
Created April 20, 2017 10:20
Show Gist options
  • Save AJFaraday/8b383c4083ab9919f4445c6a8d3b5692 to your computer and use it in GitHub Desktop.
Save AJFaraday/8b383c4083ab9919f4445c6a8d3b5692 to your computer and use it in GitHub Desktop.
Don't do this
$('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.
@dvberkel
Copy link

// Conclusion: I've been developing for 7 years and I'm still an idiot.

Aren't we all?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment