I have page with a jCarousel Lite carousel with some text and now I need to make a link on another page to a specific position in the carousel.

How can I jump to this position?

link|improve this question

1  
show some of your code – CF Mitrah Jan 25 at 18:29
feedback

1 Answer

If you're linking from another page to the page that contains the carousel, you could use a hash to go to a specific slide.

You could do something like this (with a hash value like www.example.com/#5)

function carousel_initCallback(carousel){

    var hash = window.location.hash;
    if(hash){
        carousel.options.start = jQuery.jcarousel.intval(hash.slice(1));
    } 

}

$(function(){

    $('#your_carousel_element').jcarousel({
        ...
        initCallback: carousel_initCallback
    });

});
link|improve this answer
Thanks Scrooby Lookd great I will check this out – Anders Pedersen Jan 25 at 21:51
feedback

Your Answer

 
or
required, but never shown

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