Overview
The Wizard displays content in sequential, stepwise order. Each step of the Kendo UI Wizard has content, which can be a form or any other type of HTML content.
The Wizard is part of Kendo UI for jQuery, a
professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.
Initializing the Wizard
The Wizard can be initialized from a div
element or a form
element. The following example demonstrates how to initialize the Wizard from a <div>
element.
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
steps: ["Initial step", "Second step", "Third step"]
});
</script>