Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Nivo Slider for jQuery: I'm sure I'm missing something, but is there a way to have the slider start and loop by clicking on the first image? I have a series of 8 images that I'm replacing an SWF with, but the first slide says "Click to start". I know I can turn on the manual option, but that's not what I need. I just need the slider to start it's loop when the first image is clicked.

share|improve this question

2 Answers

up vote 1 down vote accepted

Probably you have to set the manualAdvance: true - look at the complete list of options here.

And then just attach a click event listener to the slideshow/first slide and set the manualAdvance back to false, so it can continue to play

share|improve this answer
I get the idea of the event listener, but how do you change the manualAdvance? – stephmoreland May 29 '12 at 17:45

Or you can put the following in the head section:

<script type="text/javascript">
   jQuery(window).load(function() {
   $('#Slider').data('nivoslider').stop();
   $('#Slider').live('click', function() {$('#Slider').data('nivoslider').start();});
    });
</script>
share|improve this answer
I tried this, but the slider wouldn't stop. The console showed that it ran, but it just didn't stop. I ended up creating a loop and that seems to do the job but thanks very much. – stephmoreland May 30 '12 at 14:05
Nice. Do you have an URL, I would be interested! Thanks Steph – Pascal May 30 '12 at 22:04
If you e-mail me, I can send you the URL. – stephmoreland May 31 '12 at 15:09

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.