This is a specific question to twitter bootstrap http://vadimg.com/twitter-bootstrap-wizard/
I am trying to work out if anyone has been able to skip steps when handling the onNext event. I want to skip steps depending on inputs that have been selected on previous steps. I have seen you can do this:
$('#rootwizard .finish').click(function() {
alert('Finished!, Starting over!');
$('#rootwizard').find("a[href*='tab1']").trigger('click');
});
I can't use this as I have disabled the tabs, and this unfortunately doesn't help if I use this during the onNext event if I have enabled the tabs as it continues to executes the code from the onNext event caller.
Thanks Dan