[jQuery] Re: jQuery slideshow

2008-08-28 Thread admi99
ow back the last item. > If I'm wrong, the code I gave you works as expected. > > -- > Ariel Fleslerhttp://flesler.blogspot.com > > On Aug 28, 12:27 pm, admi99 <[EMAIL PROTECTED]> wrote: > > > Thank you :) However it isn't what I need :) > > At First :

[jQuery] Re: jQuery slideshow

2008-08-28 Thread admi99
mespacing/plugin structure to this > (customization is a good idea too). > > Cheers > -- > Ariel Fleslerhttp://flesler.blogspot.com > > On Aug 27, 4:33 pm, admi99 <[EMAIL PROTECTED]> wrote: > > > I'd like to do slideshow by myself but I've met som

[jQuery] jQuery slideshow

2008-08-27 Thread admi99
I'd like to do slideshow by myself but I've met some problems. This example is quite simplified: var pos= 0; slide = function(){ currImg[pos].fadeOut("slow", function(){ curImg[pos+1].fadeIn("slow", slide() ); } pos = pos + 1; ); } It's wrong example because of recursion. How can it be made?