-2

I have this code in my theme:

<script type="text/javascript">             
(function($){
    $(document).ready(function(){                                
        var testimonials = $(".single-testimonial_<?php echo $ID; ?   >").find('ul').children().length;                                  
        $(".single-testimonial_<?php echo $ID; ?>").jCarouselLite({
          btnNext: ".gon_<?php echo $ID; ?>",
          btnPrev: ".pon_<?php echo $ID; ?>",
          auto:3100,                
          visible: testimonials
        });
    });
})(jQuery);

</script>

PHP FILE: http://codetidy.com/8399/

What should I add, to make it stop the animation on hover. I'm not into jQuery, so please, write the exact code if you know it.

Thanks!

Jack Bauer
  • 37
  • 8

1 Answers1

0

Solved by using custom jCarouselLite.

Stop the jcarousel Lite animation on mouseover?.

I found it after 3h of research.

Community
  • 1
  • 1
Jack Bauer
  • 37
  • 8