jquery Cycle - Next by clicking image as well as a next button.
This might be a easy question help would be appreciated.
I am using the jquery Cycle plugin for a slide show. I have it set up so that the next function is triggered on the .slideshow class, so the image changes when clicked. I would like to have a next button in addition to this functionality.
- $('.slideshow').cycle({
- fx: 'fade',
- speed: 'slow',
- timeout: 4500,
- next: '.slideshow',
- prev: '#prev'
- });
I would like to add a second next: '#next' but this doesn't work.
Is there a way to do this?
Thanks for any help.