Skip to content

IsaRoGaMX/jqueryBootstrapWizard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

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

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

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

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published