From 44769df602f4b6a5152233d32eb2f93e71475bfe Mon Sep 17 00:00:00 2001 From: John Resig Date: Sun, 25 Mar 2007 20:28:34 +0000 Subject: [PATCH] Added fix for bug #945 (Finding items with an ID of length in IE and Opera). --- src/jquery/jquery.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- 1.7.10.4