Inspired by the answer of @Irshad Khan, hope it may help others.
Apply data-rule-required="true"
to required HTML inputs then in jQuery
$('form').submit(function (e) {
e.preventDefault();
var clikedForm = $(this);
if (clikedForm.valid()) {
alert('valid');
} else {
alert('not_valid');
}
});