The closest
method does actually search down the tree (despite what the documentation says), but I know what you mean. You want one that searches among the children of the element. Depending on how you want to search:
$('#Id').children('div');
or
$('#Id').find('div');