Is it possible to get all the elements within a ng-form, as it is possible with form?
For:
<form name="myForm" id="myForm">...</form>
This works:
document.forms["myForm"].elements
But for:
<ng-form name="myForm" id="myForm">...</ng-form>
Neither this:
document.getElementsByTagName("ng-form")["myForm"].elements
nor this:
document.getElementById("myForm").elements
seem to work. They return undefined.
Is there a way with ng-form to get all its elements?
You can select all sub items via Jquery.