Changing the name of a button in jquery-steps

Brampage picture Brampage · Mar 9, 2014 · Viewed 24.1k times · Source

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

Answer

Rafael Staib picture Rafael Staib · Mar 11, 2014

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);`