jQuery plugin to create Wizard using Bootstrap
$.fn.jqueryBootstrapWizard.labels = {
btn_back: 'Back',
btn_next: 'Next',
btn_finish: 'Finish',
btn_cancel: 'Cancel'
}
default | description | |
---|---|---|
cancel_url | null | href value for cancel button (required to show cancel button) |
onBeforeShowTab | null | function to be executed before show tab |
onShownTab | null | function to be executed after show tab |
onFinish | null | onclick event handler to finish button |
$('#navWizard').jqueryBootstrapWizard({
onBeforeShowTab: function(e) {
//e.targetIndex: newly activated tab index
//e.relatedTargetIndex: previous active tab
}
});
$('#navWizard').jqueryBootstrapWizard({
onShownTab: function(e) {
//e.targetIndex: newly activated tab index
//e.relatedTargetIndex: previous active tab
}
});
$('#navWizard').jqueryBootstrapWizard({
onFinish: function() {
}
});