How to make JCarousel Vertical Scroller reverse scroll?
        Posted  
        
            by Scott Faisal
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Scott Faisal
        
        
        
        Published on 2010-05-12T13:58:52Z
        Indexed on 
            2010/05/12
            14:04 UTC
        
        
        Read the original article
        Hit count: 332
        
I was able to instantiate a working scroller using jQuery Jcarousel however I need it to reverse scroll. For example right now I have:
jQuery(document).ready(function() {
             jQuery('#mycarousel').jcarousel({
            auto: 1,
            vertical: true,
            scroll: 1,
            animation: "slow",
            wrap: 'last',
            initCallback: mycarousel_initCallback
        }); 
        });
What do I need to do to make the items scroll upwards instead of downwards?
Thank You in advance
© Stack Overflow or respective owner