-
Notifications
You must be signed in to change notification settings - Fork 765
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 | "" |
$("#wizard").steps("add", {
title: "Step Title",
contentMode: "async",
contentUrl: "data.xml"
});<div id="wizard">
<h1>Step Title</h1>
<div data-mode="async" data-url="data.xml">
</div>
</div>