steps.contentUrl String
Specifies an endpoint which the step content should be loaded from.
Example
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
steps: [{
title: "Initial step",
contentUrl: "https://demos.telerik.com/kendo-ui/content/web/tabstrip/ajax/ajaxContent1.html"
},
"Second step",
"Third step"
]
});
</script>