Skip to content

Step Object

Rafael J. Staib edited this page May 23, 2013 · 4 revisions

Represents an step object.

Property 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