I am using jCarouselLite in my site in order to display an image gallery. The carousel has three slides let's say and every slide has 8 images. The problem is that while the carousel is created I can see all the images loaded, and not only the first slide. And when the load is done then the carousel hides the next two slides. My code is:

$(window).load(function(){ 
   $(".carouselGallery").jCarouselLite({
     btnNext: ".carousel-gallery-next",
     btnPrev: ".carousel-gallery-prev",
     visible: 1,
     speed: 500
   });
});

I decided to add it in $(window).load() in order to avoid this problem, but still have it. Any ideas how to solve it? Thanks in advance

link|improve this question

59% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.