Search code examples
fuelux

FuelUX programmatically change wizard steps


Is there a way to programmatically switch between fuelux wizard steps using jquery?

Something like:

var $wizard = $('#MyWizard').wizard();

$wizard.next()

Is this possible?


Solution

  • Very close! Please try this:

    $('#MyWizard').wizard('next');