You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had the same problem and added this to my jquery.steps.js file:
$.fn.steps.reset = function ()
{
var wizard = this,
options = getOptions(this),
state = getState(this);
return goToStep(wizard, options, state, 0);
};
And in my HTML file i call this function to reset to page 0:
$( "#wizard" ).steps('reset');
I am looking for the functionality to reset the currentIndex of steps to be resetted to the first step once onFinished is called
The text was updated successfully, but these errors were encountered: