I am trying to create a page with multiple jquery slideshows each with their own next, previous button using jquery cycle all. Here is my code:
<script type="text/javascript">
$(document).ready(function(){
$('#slideshow').cycle({
fx:'fade',
speed:1,
timeout: 0,
next:'#next',
prev:'#prev',
});
});
</script>
and the html for 2 slideshows (but i want 4)
<div id="content">
<a name="1" id="1"></a>
<div id ="slideshow">
<img src="image2.jpg" width="675" height="420" />
<img src="image.jpg" width="675" height="420" />
</div>
<a id="prev" href="#" class="Code-Pro3">Prev</a> <a id="next" href="#" class="Code-Pro3">Next </a>
<a name="2" id="2"></a>
<div id ="slideshow2">
<img src="image.jpg" width="675" height="420" />
<img src="image2.jpg" width="675" height="420" />
</div>
<a id="prev" href="#" class="Code-Pro3">Prev</a> <a id="next" href="#" class="Code-Pro3">Next </a>
any help is appreciated. thanks.