Skip to content

Instantly share code, notes, and snippets.

@mstrickland22
Created September 25, 2012 14:29
Show Gist options
  • Save mstrickland22/3782269 to your computer and use it in GitHub Desktop.
Save mstrickland22/3782269 to your computer and use it in GitHub Desktop.
JavaScript: Pub/Sub with JQuery
// Works in modern browsers + IE9, but Modernizr has a polyfill baked in for function.bind
var o = $( {} )
$.subscribe = o.on.bind(o)
$.unsubscribe = o.off.bind(o)
$.publish = o.trigger.bind(o)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment