I’m using the following jQuery plugin:
I’ve set the play attribute to 30000 so that the slideshow will change to the next slide every 30 seconds.
This works fine, until you manually change the current slide by using the next/prev options.
If these are used, afterwards the slide never automatically changes without having to use the arrows to do so.
On the example on slidejs.com this doesn’t seem to be the case.
Here is the code I’m using:
$(document).ready(function () {
$('.slides').slides({
next: 'right_arrow'
, prev: 'left_arrow'
, pagination: true
, generatePagination: false
, randomize: true
, play: 30000
});
});
Why is this not working?
Try adding the pause option: