Initial OpenECOMP Portal commit
[portal.git] / ecomp-portal-FE / client / bower_components / jqTree / _entries / 77_children.md
diff --git a/ecomp-portal-FE/client/bower_components/jqTree/_entries/77_children.md b/ecomp-portal-FE/client/bower_components/jqTree/_entries/77_children.md
new file mode 100644 (file)
index 0000000..f04b357
--- /dev/null
@@ -0,0 +1,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 %}