How to force a html5 form validation without submitting it via jQuery
To check whether a certain field is valid, use: $(‘#myField’)[0].checkValidity(); // returns true|false To check if the form is valid, use: $(‘#myForm’)[0].checkValidity(); // returns true|false If you want to display the native error messages that some browsers have (such as Chrome), unfortunately the only way to do that is by submitting the form, like this: … Read more