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 new to jquery and I want to move my Waterwheel Carouselc left /right from buttons

suppose I have a button for right movement How can I do this code using Waterwheel Carousel function? I have tried the following code :

$("#waterwheelcarouseldefault").waterwheelCarousel().moveItem();

any one has a code for it ?

share|improve this question
What have you tried? – roasted Jan 14 at 10:30
1  
@roasted ofcourse $("#waterwheelcarouseldefault").waterwheelCarousel().moveItem(); – Mohammed Jan 14 at 10:35

1 Answer

in left button write this :

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

in right button write this :

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

I think this might be work.

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.