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 found a simple way to do this.
you can use the jquery function
$("#wizard-t-2").get(0).click();
assuming you know what step you want to go to.
this example would bring you to the third step of the wizard.
use chromes editor to figure out what the exact id is of the step you want to go to.