Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working with waterwheel carousel I want to call move function based on my button click

here is my code :

 function myFunction()
{
 $("#waterwheel-carousel-default").waterwheelCarousel().moveOnce(true);
}

It's give me an error

TypeError: 'undefined' is not a function (evaluating '$("#waterwheel-carousel-default").waterwheelCarousel().

Any one can help?

share|improve this question
Do you get the error when trying to initialize the plugin normally, or only inside your click function? It looks like $("#waterwheel-carousel-default").waterwheelCarousel is undefined, so are you sure you're including the javascript file correctly? Even without the error, though, I don't think you'll be able to call moveOnce, as it's an inner function of the plugin, not a member of the return value. – freejosh Jan 15 at 13:59
@freejosh It is initialize correctly but how can I call moveonce, method – Mohammed Jan 15 at 14:06
Ah, so the undefined error is probably referring to moveOnce since, like I said, it's not in the return value. Ahmed Assaf's answer below is probably the only way - use your function to find the default button and trigger its click. – freejosh Jan 15 at 14:11

1 Answer

up vote 3 down vote accepted

In left button write this :

$("#waterwheel-carousel-default").find('.carousel-controls .carousel-prev').trigger('click');

In right button write this :

$("#waterwheel-carousel-default").find('.carousel-controls .carousel-next').trigger('click');

Try this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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