Allows authors to fix device specific issues with navigating from elements to nodes.
cf2:dom.Element - enhances
This component adds the following method to the V$.dom.Element's prototype object.
Returns an array of the DOM Elements containing the children of the selected element. Any child nodes other than elements are excluded from the list. The returned array is not live, i.e. changes to the DOM do not automatically propagate to the array.
var e = V$E("box");
var children = e.v_getChildren();
for (i in children) {
var child = children[i];
e.removeChild(child);
}