Skip to content

Instantly share code, notes, and snippets.

@biabsnippets
Created December 6, 2012 13:20
Show Gist options
  • Save biabsnippets/4224404 to your computer and use it in GitHub Desktop.
Save biabsnippets/4224404 to your computer and use it in GitHub Desktop.
JavaScript: Sexy PubSub (jQuery Edition)
/*
* Sexy Pub/Sub (jQuery Edition)
*
* Hat tip Paul Irish & Jeffrey Way.
*/
(function($) {
var o = $({});
$.each({
on: 'subscribe',
trigger: 'publish',
off: 'unsubscribe'
}, function(key, api) {
$[api] = function() {
o[key].apply(o, arguments);
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment