Skip to content
Rafael J. Staib edited this page May 22, 2013 · 4 revisions
Setting Name Description Type Default Value
title The step title (HTML). String ``
content The step content (HTML). String ``
contentMode Indicates how the content will be loaded. String or Integer html or 0
contentUrl The URI that refers to the content. String ``

JavaScript Example

$("#wizard").steps("add", {
    title: "Step Title",
    contentMode: "async",
    contentUrl: "data.xml"
});

HTML Example

<div id="wizard">
    <h1>Step Title</h1>
    <div data-mode="async" data-url="data.xml">
    </div>
</div>
Clone this wiki locally