I want to create a multipage form where only my first page should not display the tab-pill and the remaining pages should have the tabs displaying but without the first page tab in it.
To navigate to the first page only the previous button from the second page should be used.
I am using material bootstrap wizard.
$('.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 wrote to hide the navigation bar in the first page