aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAriel Flesler <aflesler@gmail.com>2009-02-23 13:27:48 +0000
committerAriel Flesler <aflesler@gmail.com>2009-02-23 13:27:48 +0000
commit48164ee603bc4ec17f2fb72571c531ebdc7213ae (patch)
tree107f402c45ff67f0a9b140b210c953211f058f54
parent883450b702d7818088ad1498473546d924a858de (diff)
downloadjquery-48164ee603bc4ec17f2fb72571c531ebdc7213ae.tar.gz
jquery-48164ee603bc4ec17f2fb72571c531ebdc7213ae.zip
jquery event: Fixing event.currentTarget for live().
-rw-r--r--src/event.js1
-rw-r--r--test/unit/event.js13
2 files changed, 13 insertions, 1 deletions
diff --git a/src/event.js b/src/event.js
index a50fe89fc..230af19e0 100644
--- a/src/event.js
+++ b/src/event.js
@@ -577,6 +577,7 @@ function liveHandler( event ){
});
jQuery.each(elems, function(){
+ event.currentTarget = this.elem;
if ( this.fn.call(this.elem, event, this.fn.data) === false )
return (stop = false);
});
diff --git a/test/unit/event.js b/test/unit/event.js
index 2ba256172..9a7c7034a 100644
--- a/test/unit/event.js
+++ b/test/unit/event.js
@@ -489,7 +489,7 @@ test("toggle(Function, Function, ...)", function() {
});
test(".live()/.die()", function() {
- expect(46);
+ expect(49);
var submit = 0, div = 0, livea = 0, liveb = 0;
@@ -649,6 +649,17 @@ test(".live()/.die()", function() {
// Cleanup
jQuery("span#liveSpan1 a, span#liveSpan1, span#liveSpan2 a, span#liveSpan2").die("click");
+
+ // Test this, target and currentTarget are correct
+ jQuery('span#liveSpan1').live('click', function(e){
+ equals( this.id, 'liveSpan1', 'Check the this within a live handler' );
+ equals( e.currentTarget.id, 'liveSpan1', 'Check the event.currentTarget within a live handler' );
+ equals( e.target.nodeName.toUpperCase(), 'A', 'Check the event.target within a live handler' );
+ });
+
+ jQuery('span#liveSpan1 a').click();
+
+ jQuery('span#liveSpan1').die('click');
});
/*