I want to create a scroller for jCarousel. I made something similar with a previous version of jCarousel (you can see what exactly I want to achieve at www.renmenbi.com. The fact is that I'm not at all familiar with JavaScript nor jQuery and I can't do the scroller this time. I tried to use the same approach as I did before inspiring myself from the prev and next buttons code. But this time if I write this: this.scroller = $('.jcarousel-scroller', this.container);
if (this.scroller.size() == 0 && this.options.scrollerHTML != null) this.scroller = this.clip.before(this.options.scrollerHTML).scrolls(); I get an error telling me that the function doesn't exist, even if I copied the prev function code and rename it to "scrolls". There is an easy way to achieve what I want?