I am using a jQuery-steps on my app to for a wizard-like situation. I am having trouble finding out how to change to a custom step though. Any help with this one?
Basing on @AbdulJamal answer, I've implemented it for any step:
$(function () { var stepsWizard = $("#wizard").steps({ ... }); // step variable handles current step (from 0) for(var i=0; i
Note that step variable must be defined and equal or greater than 0.
step