Как можно позвать метод из плагина jquery

fantazista

Новичок
Добрый день
Есть плагин jquery. Плагин представляет собой слайдер(карусель)
http://sorgalla.com/projects/jcarousel/#Dynamic-Content-Loading

Там есть метод next.
PHP:
next: function() {
            if (this.tail !== null && !this.inTail) {
                this.scrollTail(false);
            } else {
				if (this.options.slide_type == 1) {
					//	console.log('first ------ '+this.first);
					//	console.log('max_slide ------ '+max_slide);
					if (this.first + 2 <= max_slide) {
						next_slide = this.first + 2;
						this.scroll(next_slide);
					} else {
						this.scrollTail(false);
					}
				} else {
					this.scroll(((this.options.wrap == 'both' || this.options.wrap == 'last') && this.options.size !== null && this.last == this.options.size) ? 1 : this.first + this.options.scroll);
				}
            }
        },
Как можно обратиться к этому методу, через другой js скрипт, подключенный к странице?
 

Yaponchick

Новичок
Ну ты и жестокий конечно, там есть глава "Accessing the jCarousel instance"

Код:
jQuery(document).ready(function() {
  jQuery('#mycarousel').jcarousel();
  var carousel = jQuery('#mycarousel').data('jcarousel');

  carousel.next();
});
 
Сверху