next

Selects the step which is immediately after the currently selected step. Does not select the next step, if it is disabled.

Example

<div id="wizard"></div>

<script>
    var wizard = $("#wizard").kendoWizard({
        steps: [{
            title: "Initial step"
        },{
            title: "Second step"
        }]
    }).data("kendoWizard");

    wizard.next();
</script>
In this article