I am using the new slide JS V3.0, but I cannot force the slide animation to restart after it has been paused by clicking on the navigation. I saw someone who said that it worked with pagination, so I tried to use this, but to no avail. Any help is much appreciated!
Here is the code I'm using (currently trying to just make it work even paginated)
<script> $(function() { $('#slides').slidesjs({ width: 905, height: 310, navigation: false, play: { auto: true, pauseOnHover: true, effect: 'fade', restartDelay: 1500 }, pagination: { effect: 'fade', play: { restartDelay: 1500 } }, effect: { fade: { speed: 1500 }, crossfade: true } }); }); </script>
source share