I've looked through the other questions about this and not found a suitable answer.

What I need is very simple: The index of the currently shown item.

Here's my little chunk of config

    $('.carousel').jCarouselLite(
    { 
        btnNext: "#right-navigation",
        btnPrev: "#left-navigation",
        visible: 1,
        afterEnd: function(a)
        {
            // Code that requires the index
        }
    });

Note: the a is an object

Thanks!

link|improve this question

72% accept rate
feedback

1 Answer

up vote 2 down vote accepted

The elements representing the items that are visible after the animation ends are passed in as argument.

so you should be able to do something like

afterEnd: function(a){
   var index = $(a[0]).index();
}

to get the index of the first element

link|improve this answer
Perfect; thank you. – Alex coady Jun 8 '11 at 13:57
Brilliant. Just what I was looking for. Have an upvote! – Michael Giovanni Pumo Jul 11 '11 at 14:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.