From: John Resig <jeresig@gmail.com>
Date: Mon, 5 Jan 2009 19:22:25 +0000 (+0000)
Subject: Make sure that if no ownerDocument is available that we fall back to the node itself... 
X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=ebd9205fdb7f14b98301c4c183e9d6a51420ad0e;p=jquery.git

Make sure that if no ownerDocument is available that we fall back to the node itself (likely the document).
---

diff --git a/src/core.js b/src/core.js
index d779061..9222e0a 100644
--- a/src/core.js
+++ b/src/core.js
@@ -475,11 +475,11 @@ jQuery.fn = jQuery.prototype = {
 
 	domManip: function( args, table, callback ) {
 		if ( this[0] ) {
-			var fragment = this[0].ownerDocument.createDocumentFragment(),
-				scripts = jQuery.clean( args, this[0].ownerDocument, fragment ),
+			var fragment = (this[0].ownerDocument || this[0]).createDocumentFragment(),
+				scripts = jQuery.clean( args, (this[0].ownerDocument || this[0]), fragment ),
 				first = fragment.firstChild,
 				extra = this.length > 1 ? fragment.cloneNode(true) : fragment;
-			
+
 			if ( first )
 				for ( var i = 0, l = this.length; i < l; i++ )
 					callback.call( root(this[i], first), i > 0 ? extra.cloneNode(true) : fragment );