I am using jquery cycle plugin to display a basic slider. I have 5 images.
Code is :
$(function(){
$('#slider').cycle();
});
But I want to show the 5 images and at the end of it, stop the animation and keep the last image displayed in it.
I mean, it should not repeat showing the sliders again. Should stop after the slides are shown once.
How to do this?