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?

$("#waterwheel-carousel-default").waterwheelCarouselisundefined, 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 callmoveOnce, as it's an inner function of the plugin, not a member of the return value. – freejosh Jan 15 at 13:59undefinederror is probably referring tomoveOncesince, 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 itsclick. – freejosh Jan 15 at 14:11