Skip to content

Instantly share code, notes, and snippets.

@jaredatron
Created January 26, 2010 22:46
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jaredatron/287333 to your computer and use it in GitHub Desktop.
Save jaredatron/287333 to your computer and use it in GitHub Desktop.
(function() {
// jQuery(context).delegate(selector, types, fn)
// jQuery(context).delegate(selector, types, data, fn)
// jQuery(context).delegate(selector, {type: fn})
var delegate = jQuery.fn.delegate;
jQuery.fn.delegate = function(selector, types, data, fn){
if (jQuery.isPlainObject(types)){
for (var type in types) delegate.call(this, selector, type, undefined, types[type]);
}else{
delegate.call(this, selector, types, data, fn)
}
return this;
}
// jQuery(context).undelegate(selector, types, fn)
// jQuery(context).undelegate(selector, {type: fn})
var undelegate = jQuery.fn.delegate;
jQuery.fn.undelegate = function(selector, types, fn){
if (jQuery.isPlainObject(types)){
for (var type in types) delegate.call(this, selector, type, types[type]);
}else{
undelegate.call(this, selector, types, fn)
}
return this;
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment