Reputation: 21
I am using the jssor Tab Slider to create an animated form. I want to add the option to move to the next slide within the content (not just by clicking the tabs at the top...)
2 ways I want to move to the next slide:
I've tried adding data-u="arrowright" to my continue button, and it completely erased my tab navigation. I'm still not sure how to even start with the radio buttons.
Upvotes: 1
Views: 1828
Reputation: 6985
var jssor_slider1 = new $JssorSlider$(...;
$('img.next').click(function () {
jssor_slider1.$Next();
});
Hope this help.
Upvotes: 2