Wizard With Finish Button On last tab

Auto-hide of Finish, Next, and Last buttons only when used with Bootstrap

HTML



JS

$(document).ready(function() {
    $('#rootwizard').bootstrapWizard();
    $('#rootwizard .finish').click(function() {
        alert('Finished!, Starting over!');
        $('#rootwizard').find("a[href*='tab1']").trigger('click');
    });
});