This might be even more robust solution :

$C.fadeOut(
        verbTime,
        (function( str, fade_time ){
             return function(){ $THAT.text( str ).fadeIn
( fade_time ); }
        })( ARR[i],  verbTime )
      );

-- DBJ

On Aug 12, 9:15 am, Andrea Giammarchi <andrea.giammar...@gmail.com>
wrote:
> Come on Dave don't be that precious :D
>
> $C.fadeOut(
>        verbTime,
>        (function(str){
>             return function(){$THAT.text(str).fadeIn(verbTime);}
>        })(ARR[i])
>      );
>
> On Wed, Aug 12, 2009 at 1:54 AM, Dave Methvin <dave.meth...@gmail.com>wrote:
>
>
>
> > > for(var i = 0; i<ARR.length; i++){
> > >   $C.fadeOut(
> > >         verbTime,
> > >         function(){$THAT.text(ARR[i]).fadeIn(verbTime);}
> > >      );
> > >   }
> > > }
>
> > That code has the same problem as the original, though. It is going to
> > queue up ARR.length-1 fadeOut operations that all have i==ARR.length
> > and fail. To get the code to work you need to create a closure
> > *within* the loop that captures the current loop value, which
> > jQuery.each does for you. Or am I missing something?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery Development" group.
To post to this group, send email to jquery-dev@googlegroups.com
To unsubscribe from this group, send email to 
jquery-dev+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to