Search code examples
restartanythingslider

AnythingSlider: how to restart slideshow


I'm starting the slideshow in a pop up div by clicking a button using $('#slider2').data('AnythingSlider').startStop(true);

Stopping the slideshow by $('#slider2').data('AnythingSlider').startStop(false);

When I click the same button to show again it simply continues from the slideshow that was stopped before. I want the whole slideshow to restart again. How can I do that ?


Solution

  • when restarting, do this:

    $('#slider2').anythingSlider(1); // Reset to first slide
    $('#slider2').data('AnythingSlider').startStop(true);