select
Selects a step that is present at a given index. Does not select the step, if it is disabled.
Parameters
index Number
The index of the step which should be selected.
Example
<div id="wizard"></div>
<script>
var wizard = $("#wizard").kendoWizard({
steps: [{
title: "Initial step"
},{
title: "Second step"
}]
}).data("kendoWizard");
wizard.select(1);
</script>