I use jquery.steps but I fail to disable the finish button after it has been pressed.
This is my initialze of the component:
$("#wizard").steps({
onFinished: function (event, currentIndex) {
//Do Function
},
labels: {
finish: "Attack the planet",
next: "Next",
previous: "Previous",
}
});
So when I press finish it goes to the function but I also need it to disable the finish button so users dont multiple click on it.
Any help is appreciated