I have a form that I wanted be nested, but it is not possible since HTML can\'t accept nested form. Is there a way I can manually invoke the submit(triggers the validation,
We can always submit a form directly using the submit () function from javascript.
document.getElementById("myform").submit()
In this way, we can validate the form using angularjs first and if the form is valid then submit it using the submit method.