bootstrap-wizard icon indicating copy to clipboard operation
bootstrap-wizard copied to clipboard

Responsive wizard with expanding sub steps for Bootstrap 3

BootstrapWizard - v0.1

http://www.bootstrapwizard.com

Responsive Bootstrap 3 Wizard

Designed as a clean wizard to be used in a Bootstrap Panel, a Modal, etc.

Screenshot

Usage

<div class="wizard">
    <ul class="nav nav-wizard">
        <li>
            <a href="#step1">Step 1</a>
        </li>
        ...
    </ul>
            
    <div class="wizard-pane" id="step1">
        <h3>Step 1</h3>
        <form>
        ...
        </form>
    </div>
    ...
</div>
$(".wizard").bootstrapWizard(options);

Options

nametypedefaultdescription
widthnumericnullwidth of the wizard
heightnumeric300height of wizard
cancelButtonbooleanfalsedisplay the cancel button
footerButtonsbooleantruedisplay the footer buttons
progressBarbooleantruedisplay the progress bar
buttonTextobject
{
  cancel: "Cancel",
  next: "Next",
  back: "Back",
  submit: "Submit",
}
text for the buttons

Methods

methoddescription
markAllVisitedmark all nav items as visited
serializeserialize all the form data

Events

event typedescription
show.bwfired when a nav is selected but has not yet been displayed
submit.bwfires when the submit button is clicked

Inspired by Andrew Moffat's Bootstrap Application Wizard

Sub step collapse credit to Osman Nuri Okumuş MetisMenu