I'm loading multiple jCarousel Lite http://www.gmarwaha.com/jquery/jcarousellite/ carousel (slideshows) on the same page. My requirements are similar to Hiding arrows at either end of the slideshow using jCarousel Lite. But in my case, the "disabled" class is not being added to arrows when the slider has reached the last child.

Each carousel has the following HTML markup:

<div class="sliderDiv">
    <div class='previous'>
        <span class="arrow"></span>
    </div>
    <div class="slider"> 
        <ul class='carousel'>
            <li>Content goes here</li>
            <li>Content goes here</li>
        </ul>
    </div>
    <div class='next'>
        <span class="arrow"></span>
    </div>
</div>

Here is the javascript code I'm using to generate multiple carousels:

if( jQuery.isFunction(jQuery.fn.jCarouselLite) ){
    jQuery('.slider').each(function(){
        jQuery(this).jCarouselLite({ visible: 4, speed: 900, btnPrev: jQuery(this).parent().find('.previous'), btnNext: jQuery(this).parent().find('.next'), circular: false });
    });
}

I've added CSS markup for hiding disabled arrows:

.sliderDiv .previous.disabled, .sliderDiv .next.disabled {
    visibility: hidden;
}

As I mentioned above, the carousels work fine except that the "disabled" class is not added to the arrows when they have reached the end of the carousel.

Is there anything wrong with the code I'm using?

Thanks in advance.


Using:

  • jQuery: 1.3.2
  • jCarousel: 1.0.1
link|improve this question
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.