* Get a set of elements containing all of the unique immediate children of each of the matched
* set of elements. Also note: while parents() will look at all ancestors, children() will only
* consider immediate child elements.
*/
public GQuery children() {
JsNodeArray result = JsNodeArray.create();
for (Element e : elements) {
allNextSiblingElements(e.getFirstChildElement(), result, null, null, null);
}
return new GQuery(unique(result));
}