How to get all the elements within a ng-form

874 Views Asked by At

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?

2

There are 2 best solutions below

0
On

You can select all sub items via Jquery.

    var subItems = $('#myForm *');

0
On

This may work if a non-jQuery solution is desired:

document.getElementsByTagName("ng-form")[0].getElementsByTagName("*")