From: jeresig Date: Tue, 2 Feb 2010 02:56:11 +0000 (-0500) Subject: Removed extraneous nodeName check from f95147f465932cb91e1a6aace50c556820ca4074 commit. X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=8a4b2102ff57fb113267cd2824fa4f3a907ae9ed Removed extraneous nodeName check from f95147f465932cb91e1a6aace50c556820ca4074 commit. --- diff --git a/src/manipulation.js b/src/manipulation.js index 6f0373d..d8f51a1 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -197,7 +197,7 @@ jQuery.fn.extend({ // as properties will not be copied (such as the // the name attribute on an input). var html = this.outerHTML, ownerDocument = this.ownerDocument; - if ( !html || jQuery.nodeName( this, "form" ) ) { + if ( !html ) { var div = ownerDocument.createElement("div"); div.appendChild( this.cloneNode(true) ); html = div.innerHTML;