I would like to start a Steps form using jQuery-steps BUT without the finish button at the beginning.
Because I need to handle some other button and jQuery event to activate (show) or deactivate this button; but I didn't find how I can change those setting after initialization.
I tried this:
function finish() {
$("#wizard-2").steps({enableFinishButton: true });
}
but without success - Is there a way to change those setting (enableFinishButton for this example) after the steps form is ready and working?