Fixed issue with .add()ing individual elements - and with .add()ing form elements (since they report a .length.

This commit is contained in:
John Resig 2007-01-20 04:16:25 +00:00
parent 27c08b6544
commit 7b3ab69fcf

View file

@ -985,7 +985,10 @@ jQuery.fn = jQuery.prototype = {
add: function(t) {
return this.pushStack( jQuery.merge(
this.get(),
typeof t == "string" ? jQuery(t).get() : t.length ? t : [t] )
t.constructor == String ?
jQuery(t).get() :
t.length != undefined && !t.nodeName ?
t : [t] )
);
},