I found another way:
$(".myElement", $(myParentContainer))
I tried you suggestion to find an child inside myParentContainer, like this:
$(myParentContainer).find('myGrid'), but this don´t seans to work. So I make:
$(myParentContainer.children[1])
There is another way ?