Removed extraneous nodeName check from f95147f465 commit.

This commit is contained in:
jeresig 2010-02-01 21:56:11 -05:00
parent 532bec4c69
commit 8a4b2102ff

View file

@ -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;