jQuery-Wizard icon indicating copy to clipboard operation
jQuery-Wizard copied to clipboard

A simple jquery plugin to convert a simple form into a wizard form with steps

Results 2 jQuery-Wizard issues
Sort by recently updated
recently updated
newest added

Hello, How can i start plugin with the index of step. example: $('mydiv').wizard({step: indexOfStep }) OR var myWyz = $('mydiv').wizard(); myWyz.setStep(indexOfStep); is It possible ?

I'm not really good at JS. I want to check current step number. Tried this: ``` js $("body").on('click', ".btn-next", function() { var activeTabNo = $("li.active").data("step"); alert(activeTabNo); }); ``` but no...