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
Rafael J. Staib edited this page May 24, 2013
·
1 revision
A: It is quite easy just add three additional lines of code to the onStepChanging event. See code example below.
$("#wizard").steps({onStepChanging: function(event,currentIndex,newIndex){// Allways allow step back to the previous step even if the current step is not valid!if(currentIndex>newIndex){returntrue;}
...
}});