activeStep

Returns the currently active in the Wizard [Step](/api/javascript/wizard/step) instance.

Returns kendo.stepper.Step

Step The currently active (selected) [Step](/api/javascript/wizard/step) instance.

Example

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

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

    var currentStep = wizard.activeStep();
</script>
In this article