Fix regression in add and append in IE after revision 3463

This commit is contained in:
Brandon Aaron 2007-10-06 16:45:20 +00:00
parent ad1cef94bf
commit bb998f2518

View file

@ -331,7 +331,12 @@ jQuery.fn = jQuery.prototype = {
}, },
add: function( selector ) { add: function( selector ) {
return this.pushStack( jQuery.merge( this.get(), jQuery( selector ) ) ); return this.pushStack( jQuery.merge(
this.get(),
selector.constructor == String ?
jQuery( selector ).get() :
selector.length != undefined && (!selector.nodeName || jQuery.nodeName(selector, "form")) ?
selector : [selector] ) );
}, },
is: function( selector ) { is: function( selector ) {
@ -948,7 +953,7 @@ jQuery.extend({
div.firstChild && div.firstChild.childNodes : div.firstChild && div.firstChild.childNodes :
// String was a bare <thead> or <tfoot> // String was a bare <thead> or <tfoot>
wrap[1] == "<table>" && s.indexOf("<tbody") < 0 ? wrap[1] == "<table>" && tags.indexOf("<tbody") < 0 ?
div.childNodes : div.childNodes :
[]; [];