Skip to content

Instantly share code, notes, and snippets.

@ingoe
Created April 24, 2014 19:16
Show Gist options
  • Save ingoe/11266171 to your computer and use it in GitHub Desktop.
Save ingoe/11266171 to your computer and use it in GitHub Desktop.
var aaa = function() {
console.log('aaa');
}
$(document).on('aaa', aaa);
aaa = function() {
console.log('bbb');
}
$(document).trigger('aaa');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment