Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I created a jquery cycle slideshow with next/prev buttons, but in addition to that, I want the slideshow to advance when the image is clicked. I don't know javascript well enough yet to code it myself. Is this possible? Here's what I have so far:

$('#illustration .slides').cycle({
speed:  1,
timeout: 0,
prev: '#illustration .prev',
next: '#illustration .next',
pager: '#illustration-thumbs',
pagerAnchorBuilder: function(idx, slide) {
  return '#illustration-thumbs li:eq(' + (idx) + ') a';
}
});

$('#illustration img').cycle('next');
share|improve this question

1 Answer

you can use your container for the images as a next button if you add swap your next code you have at the moment to this

next: '#illustration .next, #container_div_name',

Hopefully that should achieve what you are after

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.