From: Rick Waldron Date: Wed, 17 Apr 2013 02:37:48 +0000 (-0400) Subject: Loop cleanup X-Git-Tag: 2.0.0~9 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2c7b1b8502ba85320678499c8499b647c1ea82e2;p=jquery.git Loop cleanup Signed-off-by: Rick Waldron --- diff --git a/src/manipulation.js b/src/manipulation.js index ac1bf2bbf..640dfcd6f 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -75,12 +75,9 @@ jQuery.fn.extend({ remove: function( selector, keepData ) { var elem, elems = selector ? jQuery.filter( selector, this ) : this, - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; + i = 0; + for ( ; (elem = elems[i]) != null; i++ ) { if ( !keepData && elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem ) ); } @@ -98,12 +95,9 @@ jQuery.fn.extend({ empty: function() { var elem, - i = 0, - l = this.length; - - for ( ; i < l; i++ ) { - elem = this[ i ]; + i = 0; + for ( ; (elem = this[i]) != null; i++ ) { if ( elem.nodeType === 1 ) { // Prevent memory leaks