steps.content String

Specifies the HTML string content to be rendered in the step.

Example

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

<script>
    $("#wizard").kendoWizard({
        steps: [{
            title: "Initial step",
            content: "<h3>HTML content</h3><p>This is a harcoded HTML content for this step.</p>"
        },
        "Second step",
        "Third step"
        ]
    });
</script>
In this article