Form successful

The form submit method

onFormSubmit: function(container){
  //your logic here
}

The onFormSubmit method will receive as a parameter the container.


Important

Your container must be a form element to call this method, otherwise the method onContainerSuccess will be called. If you don't configure onFormSubmit method your form will execute your-form.submit() as default.


Usage example

The Html:

The Javascript:

var config = {
  onFormSubmit: function(container){
    var login = document.getElementById('login').value;
    var password = document.getElementById('password').value;
    var data = {
      login: login,
      password: passord
    };
    someMethodSendAjax(data);
  }
};
var validator = new VanillaValidator(config);