Before submitting my form with jQuery after using event.preventDefault(), I need to check if my form has some validation errors (empty required fields, wrong data in "email" input, etc.) before submitting it programmatically (which will bypass the HTML5 validation and create a useless reloading returning a Django form error).
How can I do that?