Skip to content

Instantly share code, notes, and snippets.

@Sysetup
Created July 19, 2016 23:27
Show Gist options
  • Save Sysetup/e0f349a771a5ac72d31ab414ad3ceed8 to your computer and use it in GitHub Desktop.
Save Sysetup/e0f349a771a5ac72d31ab414ad3ceed8 to your computer and use it in GitHub Desktop.
Fancies JQuery callbacks.
//http://www.etnassoft.com/2011/03/29/reorganizando-los-callbacks-en-jquery/
// We write all callbacks in the same object
var callbacks = {
myFunctionOne: function( event ) {
// Do something...
},
myFunctionTwo: function( event ) {
// Do something...
}
}
$("#myButton").click( callbacks.myFunctionOne );
$("#otherButton").click( callbacks.myFunctionTwo );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment