onSubmit

add on submit event

onSubmit(callback,?options)

Adding submit event

$('#form').onSubmit(function(e){
   //perform action here
   this.serialize(); // get the form data as json
   //or
   this.formData() // this returns new FormData object for your ajax and file upload
   
   e.preventDefault();
    //process form and then submit
});

Last updated