i know js 1.2 does, but i think its only supported in ff 2.0 currently... but dont quote me on that.
On 10/6/06, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: > interesting! > > When would length be undefined on an JQ object? > > When I first saw the question, I thought of tail recursion, does JS > deal well (optimize) tail recursion? > > On 10/6/06, Blair Mitchelmore <[EMAIL PROTECTED]> wrote: > > I propose hcae: > > > > jQuery.fn.hcae = function( fn, args ) { > > return jQuery.hcae( this, fn, args ); > > }; > > > > jQuery.hcae = function( obj, fn, args ) { > > if ( obj.length == undefined ) > > for ( var i in obj ) > > fn.apply( obj[i], args || [i, obj[i]] ); > > else > > for ( var i = obj.length - 1; i >= 0; --i ) > > fn.apply( obj[i], args || [i, obj[i]] ); > > return obj; > > }; > > > > -blair ;) > > > > kenton.simpson wrote: > > > Is there a way to make .each walk backwards threw the element > collection? > > > > _______________________________________________ > > jQuery mailing list > > discuss@jquery.com > > http://jquery.com/discuss/ > > > > > -- > Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ > _______________________________________________ > jQuery mailing list > discuss@jquery.com > http://jquery.com/discuss/ > _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/