Wizard Navigation generic javascript

Thanks for pointing me in the right direction Matt, greatly appreciated!

For those interested in running Matt’s snippet on a button with Multiple Actions, this worked for me:

var button = arguments[0]&#46;button, $ = skuid&#46;$; var wizard = $('#MyUniqueWizardId')&#46;data('object'); var currentStep = wizard&#46;steps[wizard&#46;currentstep]; var stepKeys = Object&#46;keys(wizard&#46;steps), currentIndex = stepKeys&#46;indexOf(wizard&#46;currentstep); if (stepKeys[currentIndex + 1]) { currentStep&#46;navigate(stepKeys[currentIndex + 1]); }<br />