aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBrandon Aaron <brandon.aaron@gmail.com>2009-03-20 03:10:07 +0000
committerBrandon Aaron <brandon.aaron@gmail.com>2009-03-20 03:10:07 +0000
commit30e760b63fd6d82f30833cd2864f245dd9594cd9 (patch)
tree21590a327ce56b7c841e0ca7e5cd0dc852a71d1c /src
parentdae96f552e7ec4ddef52f86c61de18320a7b63ed (diff)
downloadjquery-30e760b63fd6d82f30833cd2864f245dd9594cd9.tar.gz
jquery-30e760b63fd6d82f30833cd2864f245dd9594cd9.zip
fix for #4189, live/die now work with contexts other than just document
Diffstat (limited to 'src')
-rw-r--r--src/event.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event.js b/src/event.js
index 95718ad06..e5f6a453a 100644
--- a/src/event.js
+++ b/src/event.js
@@ -548,13 +548,13 @@ jQuery.fn.extend({
var proxy = jQuery.event.proxy( fn );
proxy.guid += this.selector + type;
- jQuery(document).bind( liveConvert(type, this.selector), this.selector, proxy );
+ jQuery( this.context ).bind( liveConvert(type, this.selector), this.selector, proxy );
return this;
},
die: function( type, fn ){
- jQuery(document).unbind( liveConvert(type, this.selector), fn ? { guid: fn.guid + this.selector + type } : null );
+ jQuery( this.context ).unbind( liveConvert(type, this.selector), fn ? { guid: fn.guid + this.selector + type } : null );
return this;
}
});