From: John Resig Date: Sun, 25 Mar 2007 20:28:34 +0000 (+0000) Subject: Added fix for bug #945 (Finding items with an ID of length in IE and Opera). X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=44769df602f4b6a5152233d32eb2f93e71475bfe;p=jquery.git Added fix for bug #945 (Finding items with an ID of length in IE and Opera). --- diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 910c11b..3b545e6 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1626,7 +1626,9 @@ jQuery.extend({ * @cat JavaScript */ merge: function(first, second) { - for ( var i = 0, sl = second.length; i < sl; i++ ) + // We have to loop this way because IE & Opera overwrite the length + // expando of getElementsByTagName + for ( var i = 0; second[i]; i++ ) first.push(second[i]); return first;