I need help creating a multi-page form with a unique tab display. The first page should not have a tab-pill, while the following pages should display tabs without including the first page tab.
Users can navigate to the first page using only the previous button on the second page.
I am currently utilizing Material Bootstrap Wizard for this project.
https://i.stack.imgur.com/kzIld.jpg https://i.stack.imgur.com/uhJNO.jpg
$('.wizard-card').bootstrapWizard({
...
// Class dn: display:none
onTabShow:
....
if($current == 1){
console.log('first tab'); console.log(navigation.parent().addClass('dn'));
console.log(tab);
}else{
navigation.parent().removeClass('dn')
}
...
//This is the JS code I developed to hide the navigation bar in the first page