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?
I did something like below to get it worked:
stepsWizard = $("#wizard").steps({ headerTag: "h2", bodyTag: "section" }); var indx = 3; for (i = 0; i <= indx; i++) { stepsWizard.steps("next"); }