this is my website demo : http://daplonline.in/index5.php
i got this jquery from : http://designm.ag/tutorials/image-rotator-css-jquery/
i want to stop slide
you need to clear the interval for image rotation:
$(function(){ var stop; function rotate(){ stop = setInterval(change, 1000); } rotate(); //Use the event you want to stop image rotation $("#ok").click(function(){ clearInterval(stop); }); });