Wallogit.com
2017 © Pedro Peláez
A 1 file multi-step form animator
Requires jQuery, (*1)
This multi-step-form Animator handles the and submits multi-step forms. Each step is treated as its own form and is submitted and handled with event handlers. The goal is to create a robust multi-step form handler., (*2)
Include the multi-step-form.min.js, (*3)
multiStepForm.init('.multi-step-form');
multiStepForm.addNextBtns('.multi-step-form-next');
multiStepForm.addPrevBtns('.multi-step-form-prev');
multiStepForm.init('#steps-container');
multiStepForm.addNextBtns('.multi-step-form-next');
submitHandler = function (){
var form = multiStepForm.getCurrentStep();
//submit the form
$.ajax({
type: 'post',
url: $(form).attr('action'),
data: $(form).serialize(),
success: function () {
console.log('Success!');
},
error: function () {
console.log('Error!');
}
});
//This prevents any other submit handlers (including the default) from running
return false;
}
//finally add the handler to the multiStepForm
multiStepForm.addHandler('submit', submitHandler);
init(selector)
Sets up the multi-step-form with the selector for the container of the
multi-step-form., (*4)
addNextBtns(selector)
Binds the nextStep to the click event of the specified selector, (*5)
addPrevBtns(selector)
Binds the prevStep to the click event of the specified selector, (*6)
addHandler(event, function) : boolean
This adds an event handler to one of the events. Use the eventName in the
event parameter, and the function parameter must be a function. If a bound event
handler returns false, the event will no longer bubble through the bound
handlers. Handlers executed in order of which they are bound, with the default
handler executing last., (*7)
This will return true if the hander was bound successfully., (*8)
next()
This will go to the next step, (*9)
prev()
This will go to the previous step, (*10)
goToStep(step, submit = false)
This will go to the specified step, and will submit the current step if submit
is set to true., (*11)
getCurrentStep() : jQueryObject
Will return the current step of the multi-step form., (*12)
nextStep
Called when going to the next step. stepId is the new step number, (*13)
prevStep
Called when going to the previous step. stepId is the new step number, (*14)
submit
Called to submit the forms for the current step. The default handler will use
synchronous ajax to post the form to the forms action property., (*15)