I have a jquery cycle script for my website to continually cycle through content on what's new within our company. Right not I have the transition set to scrollLeft. I would like to add a prev and next button that would scrollRight on prev and scrollLeft on next. I couldn't find any forums that would do quite what I'm looking for. Here is my code.
$('#slider').cycle({
// choose your transition type, ex: fade, scrollUp, shuffle, etc...
fx: 'scrollLeft',
delay: -100,
prev: '#prev',
next: '#next',
})
Thanks for the help.
fx: 'scrollHorz'. – powerbuoy Feb 20 '12 at 17:07