Skip to content

Instantly share code, notes, and snippets.

@afahy
Created October 10, 2009 22:31
Show Gist options
  • Save afahy/207204 to your computer and use it in GitHub Desktop.
Save afahy/207204 to your computer and use it in GitHub Desktop.
Subscribe
(function($){
$.extend($.fn, {
subscribe: function(el, evt, cb){
var self = this;
if(!self.length) { return self; }
el.bind(evt, function(){ cb.apply(self, arguments); });
return self;
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment