From: John Resig Date: Wed, 18 Feb 2009 02:40:55 +0000 (+0000) Subject: A speedup for .remove() (which also speeds up .html()). Fixes #4178. X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=3e46bce751f062775be95a6bef3cf53096a3ed21;p=jquery.git A speedup for .remove() (which also speeds up .html()). Fixes #4178. --- diff --git a/src/core.js b/src/core.js index d78ec7e..c7d10f3 100644 --- a/src/core.js +++ b/src/core.js @@ -1234,7 +1234,7 @@ jQuery.each({ empty: function() { // Remove element nodes and prevent memory leaks - jQuery( ">*", this ).remove(); + jQuery(this).children().remove(); // Remove any remaining nodes while ( this.firstChild )