summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/jqTree/_entries/77_children.md
blob: f04b357beb6f3256b655b9d1b9e815ba891299f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
title: children
name: node-functions-children
---

You can access the children of a node using the **children** property.

{% highlight js %}
for (var i=0; i < node.children.length; i++) {
    var child = node.children[i];
}
{% endhighlight %}