-
Notifications
You must be signed in to change notification settings - Fork 27
HTML Forms Integration
desdev edited this page Sep 13, 2010
·
4 revisions
- Set the configuration option
button.finishType
to “submit” (this will change the “type” attribute on the<button>
tag and causes it to behave like a submit button. - Steps can either be
<div title="some title" />
OR<fieldset><legend>some title</legend></fieldset>
(Both will have the same effect)
<form id="jWizard" method="post" action="test.php">
<div title="Welcome"></div>
<fieldset>
<legend>Test Step #1</legend>
</fieldset>
<fieldset>
<legend>Test Step #2</legend>
</fieldset>
<fieldset>
<legend>Test Step #3</legend>
</fieldset>
<div title="Test Final Step"></div>
</form>
$("#jWizard").jWizard({
buttons: {
finishType: "submit"
}
});