I am trying to get jcarousel to auto scroll through some slides of mine, this is the HTML:
<div id="slider">
<ul>
<li><img src="img/slides/slide_1.jpg" width="939" height="476" alt="" /></li>
<li><img src="img/slides/slide_2.jpg" width="939" height="476" alt="" /></li>
</ul>
</div><!-- #slider -->
This is the javascript:
<script>
jQuery(document).ready(function() {
jQuery('#slider').jcarousel({
scroll: 1,
auto: 2,
wrap: 'circular'
});
});
</script>
Any help appreciated.
Fixed the problem, by updating jcarousel and following their examples carefully.