Вопрос

I'm trying to submit a specific form Using the following command:

$("#formName").submit();

Definitely that's working, but, I have required fields into the form, and if those're empties it's not throwing the alert message. Any ideas around that?

Это было полезно?

Решение

Surround your $("#formName").submit(); in an if statement that checks the (length of) the values in your required fields, that way the form will only submit if those values are present.

You could go one step up and use separate methods for validation that return a boolean, and only if all validation methods return true do you submit the form.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top