views:

70

answers:

0

I am using jCarousel Lite in a web site im making. Im trying to get the carousel to stop scrolling when an image inside it is clicked here is the code im using.

$(‘.gallery a’).lightBox();
$(“.gallery”).jCarouselLite({
   auto: 3000,
   speed: 1000,
   visible: 4
});
$(‘.gallery a’).click(function () {
   $(this).jCarouselLite({
      auto: 0,
      speed: 0,
      visible: 4
   });
});
$(“#lightbox-secNav-btnClose”).click(function () {
   $(“.gallery”).jCarouselLite({
    auto: 3000,
    speed: 1000,
    visible: 4
   });
});