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
try this,
$('.image_thumb ul li').on("mouseover",function(){ clearInterval(intervalID); }); $('.image_thumb ul li').on("mouseout",function(){ intervalID = setInterval(cycleImage, slidetime); });
add this at the end of your coding...