1

thumbnails.html: This page contains 16 images. The user then select an image and a new page "display.htm" is loaded. On this page i am using jquery cycle and the images slowly rotate.

My question is, what jquery / cycle syntax can i use so that the "cycle" starts from the correct element. So let say the user clicks on the fourth image i need a way to ensure cycle starts at the fourth image. In my example i#m using 2 pages.

frosty
  • 5,330
  • 18
  • 85
  • 122

1 Answers1

1

If you need it to start on the 4th element, just specify that when you initialize the plugin...

$('#gallery').cycle({ 
    startingSlide: 3
});
alex
  • 479,566
  • 201
  • 878
  • 984