Domanda

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?

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top