Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Switched to using DOM Fragments in domManip.
  • Loading branch information
jeresig committed Dec 19, 2008
1 parent 2875460 commit 132b8de
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 50 deletions.
99 changes: 51 additions & 48 deletions src/core.js
Expand Up @@ -243,27 +243,27 @@ jQuery.fn = jQuery.prototype = {
},

append: function() {
return this.domManip(arguments, true, false, function(elem){
return this.domManip(arguments, true, function(elem){
if (this.nodeType == 1)
this.appendChild( elem );
});
},

prepend: function() {
return this.domManip(arguments, true, true, function(elem){
return this.domManip(arguments, true, function(elem){
if (this.nodeType == 1)
this.insertBefore( elem, this.firstChild );
});
},

before: function() {
return this.domManip(arguments, false, false, function(elem){
return this.domManip(arguments, false, function(elem){
this.parentNode.insertBefore( elem, this );
});
},

after: function() {
return this.domManip(arguments, false, true, function(elem){
return this.domManip(arguments, false, function(elem){
this.parentNode.insertBefore( elem, this.nextSibling );
});
},
Expand Down Expand Up @@ -497,44 +497,28 @@ jQuery.fn = jQuery.prototype = {
});
},

domManip: function( args, table, reverse, callback ) {
var clone = this.length > 1, elems;

return this.each(function(){
if ( !elems ) {
elems = jQuery.clean( args, this.ownerDocument );

if ( reverse )
elems.reverse();
}

var obj = this;

if ( table && jQuery.nodeName( this, "table" ) && jQuery.nodeName( elems[0], "tr" ) )
obj = this.getElementsByTagName("tbody")[0] || this.appendChild( this.ownerDocument.createElement("tbody") );

var scripts = jQuery( [] );

jQuery.each(elems, function(){
var elem = clone ?
jQuery( this ).clone( true )[0] :
this;

// execute all scripts after the elements have been injected
if ( jQuery.nodeName( elem, "script" ) )
scripts = scripts.add( elem );
else {
// Remove any inner scripts for later evaluation
if ( elem.nodeType == 1 )
scripts = scripts.add( jQuery( "script", elem ).remove() );

// Inject the elements into the document
callback.call( obj, elem );
}
});
domManip: function( args, table, callback ) {
if ( this[0] ) {
var fragment = document.createDocumentFragment(),
scripts = jQuery.clean( args, this[0].ownerDocument, fragment ),
first = fragment.firstChild;

if ( first )
for ( var i = 0, l = this.length; i < l; i++ )
callback.call( root(this[i], first), this.length > 1 ? fragment.cloneNode(true) : fragment );

if ( scripts )
jQuery.each( scripts, evalScript );
}

scripts.each( evalScript );
});
return this;

function root( elem, cur ) {
return table && jQuery.nodeName(elem, "table") && jQuery.nodeName(cur, "tr") ?
(elem.getElementsByTagName("tbody")[0] ||
elem.appendChild(elem.ownerDocument.createElement("tbody"))) :
elem;
}
}
};

Expand Down Expand Up @@ -955,8 +939,8 @@ jQuery.extend({
return ret;
},

clean: function( elems, context ) {
var ret = [];
clean: function( elems, context, fragment ) {
var ret = [], scripts = [];
context = context || document;

// !context.createElement fails in IE with an error but returns typeof 'object'
Expand Down Expand Up @@ -1037,20 +1021,39 @@ jQuery.extend({
div.insertBefore( context.createTextNode( elem.match(/^\s*/)[0] ), div.firstChild );

}

if ( fragment ) {
var found = div.getElementsByTagName("script");

while ( found.length ) {
scripts.push( found[0] );
found[0].parentNode.removeChild( found[0] );
}
}

elem = jQuery.makeArray( div.childNodes );
}

if ( elem.length === 0 && (!jQuery.nodeName( elem, "form" ) && !jQuery.nodeName( elem, "select" )) )
return;

if ( elem[0] === undefined || jQuery.nodeName( elem, "form" ) || elem.options )
if ( elem.nodeType )
ret.push( elem );

else
ret = jQuery.merge( ret, elem );

});

if ( fragment ) {
for ( var i = 0; ret[i]; i++ ) {
if ( jQuery.nodeName( ret[i], "script" ) ) {
ret[i].parentNode.removeChild( ret[i] );
} else {
if ( ret[i].nodeType === 1 )
ret = jQuery.merge( ret, ret[i].getElementsByTagName("script"));
fragment.appendChild( ret[i] );
}
}

return scripts;
}

return ret;
},
Expand Down
4 changes: 2 additions & 2 deletions test/unit/core.js
Expand Up @@ -258,10 +258,10 @@ test("jQuery('html')", function() {

reset();
foo = false;
var s = jQuery("<script>var foo='test';</script>")[0];
var s = jQuery("<script>foo='test';</script>")[0];
ok( s, "Creating a script" );
ok( !foo, "Make sure the script wasn't executed prematurely" );
jQuery("body").append(s);
jQuery("body").append("<script>foo='test';</script>");
ok( foo, "Executing a scripts contents in the right context" );

reset();
Expand Down

0 comments on commit 132b8de

Please sign in to comment.