jquery carousel auto scroll with text and image
- by Evan
I'm using the jquery carousel and I have the image auto rotating here ( http://jsbin.com/unoce/2), so the issue I'm having is the content on the left is not AUTO rotating "with" the image and the arrow selection is not either. It only works when I click the content on the left and then the image on the right along with the arrow move appropriately together.
Can someone provide support so I may get the text and the arrow to "auto" rotate with the image?
This code below would only rotate the image and nothing else...
jQuery(document).ready(function() {
jQuery("#features").jcarousel({
scroll: 1,
auto:2,
wrap: 'both',
initCallback: mycarousel_initCallback,
buttonNextHTML: null,
buttonPrevHTML: null
});
});
Here's a demo and you can edit this demo too:
http://jsbin.com/unoce/2
Thank you,
Evan