I am new to jquery steps,I have requirement to load last step directly once form is loaded. Can anybody suggest how can I achive this?
So, instead of putting this in jquery.steps.js (which could cause your changes to be overridden when you upgrade), just put the following on the page you want to use steps in. You set the startIndex
behavior. Below I left some of the other settings so you could see how the Behaviors at jquery steps can be applied.
$("#steps").steps({
headerTag: "h3",
bodyTag: "section",
enableAllSteps: true,
transitionEffect: "slide",
stepsOrientation: "vertical",
startIndex: 1, // Right here, you can set the index of the item you want to change.
});