VinceG / twitter-bootstrap-wizard

This twitter bootstrap plugin builds a wizard out of a formatter tabbable structure. It allows to build a wizard functionality using buttons to go through the different wizard steps and using events allows to hook into each step individually.
MIT License
1.39k stars 676 forks source link

How can i ignore disable tabs on next button #228

Open waleedshah opened 6 years ago

waleedshah commented 6 years ago

$('[data-toggle="wizard-radio"]').click(function(){ var proptype = ($(this).find(".proptype").val()) if(proptype == "Studio") { $('.wizard-card').bootstrapWizard('disable', 1);
} else { $('.wizard-card').bootstrapWizard('enable', 1);
}

})