Search code examples
jquery-steps

Changing the name of a button in jquery-steps


I have included the jquery-steps plugin. How can I change the buttons texts?
Now it says "finish" I want to change that into "go"

Thanks


Solution

  • Check out the following link. You can change all labels on initialization.

    var settings = {
        labels: {
            current: "current step:",
            pagination: "Pagination",
            finish: "Finish",
            next: "Next",
            previous: "Previous",
            loading: "Loading ..."
        }
    };
    $("#wizard").steps(settings);`