How do I have two set of the next/ prev on a jquery cycle I currently have one set
here
$('#s10').cycle({
fx: 'fade',
delay: -1000,
next: '#nexttop',
prev: '#prevtop'
});
But can’t seem to figure out how to add a second set to the next: and prev: lines.
Instead of using IDs like
#nexttopand#prevtop, use a class shared by two distinct elements:http://jsfiddle.net/mblase75/yThgx/