Skip to content

Latest commit

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

jqueryBootstrapWizard

jQuery plugin to create Wizard using Bootstrap

Requirements

Button Labels

$.fn.jqueryBootstrapWizard.labels = {
btn_back: 'Back',
btn_next: 'Next',
btn_finish: 'Finish',
btn_cancel: 'Cancel'
}

Options

defaultdescription
cancel_urlnullhref value for cancel button (required to show cancel button)
onBeforeShowTabnullfunction to be executed before show tab
onShownTabnullfunction to be executed after show tab
onFinishnullonclick event handler to finish button

Handlers

onBeforeShowTab

$('#navWizard').jqueryBootstrapWizard({
onBeforeShowTab: function(e) {
//e.targetIndex: newly activated tab index
//e.relatedTargetIndex: previous active tab
}
});

onShownTab

$('#navWizard').jqueryBootstrapWizard({
onShownTab: function(e) {
//e.targetIndex: newly activated tab index
//e.relatedTargetIndex: previous active tab
}
});

onFinish

$('#navWizard').jqueryBootstrapWizard({
onFinish: function() {
}
});

About

jQuery plugin to create Wizard using Bootstrap

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages