From: John Resig Date: Fri, 16 Jun 2006 01:51:15 +0000 (+0000) Subject: Added Klaus' fix for accidental DOM node catches (Ticket #3). X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=aabfccf371ac9a16979772dc6411fbe806138fac;hp=44590a5d848011d4be05fcf1d098d09c01bb7caf;p=jquery.git Added Klaus' fix for accidental DOM node catches (Ticket #3). --- diff --git a/jquery/jquery.js b/jquery/jquery.js index a06e81c..37c2b3f 100644 --- a/jquery/jquery.js +++ b/jquery/jquery.js @@ -430,7 +430,7 @@ $.clean = function(a) { for ( var j = 0; j < div.childNodes.length; j++ ) { r[r.length] = div.childNodes[j]; } - } else if ( a[i].length ) { + } else if ( a[i].length && !a[i].nodeType ) { for ( var k = 0; k < a[i].length; k++ ) { r[r.length] = a[i][k]; }