> thanks for your interest. I've extracted it 
> here:http://www.2ba-me.com/SlideShow.aspx
> Open up page and wait few slides. Try to refresh page in browser and after
> that,
> slideshow starts on last slide from previous page load, but it's stopped.

The problem is that you're passing the startingSlide value as a string
and the plugin is assuming it to be an int.  I'll fix that in the next
version, but for now you can do this:

$('#hps').cycle({
  fx:    'fade',
  speed:  3000,
  startingSlide: parseInt(startIndex),
  after: function (curr, next, opts) {
    setNext(opts.currSlide);
    }
  });
});

Cheers!

Mike

Reply via email to