Question

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?

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top