mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Fix for #806
This commit is contained in:
parent
53e12752e0
commit
3362ccf3dd
2
src/jquery/coreTest.js
vendored
2
src/jquery/coreTest.js
vendored
@ -34,7 +34,7 @@ test("get(Number)", function() {
|
||||
|
||||
test("add(String|Element|Array)", function() {
|
||||
isSet( $("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" );
|
||||
|
||||
isSet( $("#sndp").add( $("#en")[0] ).add( $("#sap") ).get(), q("sndp", "en", "sap"), "Check elements from document" );
|
||||
ok( $([]).add($("#form")[0].elements).length > 13, "Check elements from array" );
|
||||
|
||||
var x = $([]).add($("<p id='x1'>xxx</p>")).add($("<p id='x2'>xxx</p>"));
|
||||
|
2
src/jquery/jquery.js
vendored
2
src/jquery/jquery.js
vendored
@ -985,7 +985,7 @@ jQuery.fn = jQuery.prototype = {
|
||||
add: function(t) {
|
||||
return this.pushStack( jQuery.merge(
|
||||
this.get(),
|
||||
typeof t == "string" ? jQuery(t).get() : t )
|
||||
typeof t == "string" ? jQuery(t).get() : t.length ? t : [t] )
|
||||
);
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user