Fix/test for #861

This commit is contained in:
Jörn Zaefferer 2007-01-23 16:58:03 +00:00
parent 5cfaef9ff9
commit d9464547e0
2 changed files with 14 additions and 3 deletions

View file

@ -663,3 +663,13 @@ test("eq(), gt(), lt(), contains()", function() {
isSet( $("#ap a").lt(3).get(), q("google", "groups", "anchor1"), "lt()" );
isSet( $("#foo a").contains("log").get(), q("anchor2", "simon"), "contains()" );
});
test("click() context", function() {
$('<li><a href="#">Change location</a></li>').prependTo('#firstUL').find('a').bind('click', function() {
var close = $('spanx', this); // same with $(this).find('span');
ok( close.length == 0, "Element does not exist, length must be zero" );
ok( !close[0], "Element does not exist, direct access to element must return undefined" );
//console.log( close[0]); // it's the <a> and not a <span> element
return false;
}).click();
});

View file

@ -257,9 +257,10 @@ jQuery.fn = jQuery.prototype = {
* @cat Core
*/
pushStack: function( a ) {
var ret = jQuery(this);
var ret = jQuery(a);
ret.prevObject = this;
return ret.setArray( a );
//return ret.setArray( a );
return ret;
},
/**
@ -803,7 +804,7 @@ jQuery.fn = jQuery.prototype = {
find: function(t) {
return this.pushStack( jQuery.map( this, function(a){
return jQuery.find(t,a);
}) );
}), t );
},
/**