I am using the cycle jquery plugin. I have a few images that fade in and out and would like it to stop on the last image at the end of the cycle. Does anyone know a good way to do this? Thanks!
<script type="text/javascript">
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade',
timeout: 1000,
speed: 500
});
});