Ariel, >parent() - returns one level up >parents() - returns multiple levels up > >children() - returns one level down >? - returns multiple levels down > >Q: is this a missing feature or is there a reason to not have a function in >place of the '?'
This would be the equivalent:
var oContext = $("#parent");
$("#child", oContect);
-- or --
oContext.find("#child");
Either one be the equivalent of searching a node and finding the matching
children tags.
-Dan

