nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / jqTree / _entries / 77_children.md
1 ---
2 title: children
3 name: node-functions-children
4 ---
5
6 You can access the children of a node using the **children** property.
7
8 {% highlight js %}
9 for (var i=0; i < node.children.length; i++) {
10     var child = node.children[i];
11 }
12 {% endhighlight %}