<div id="grandfather">
<div id="uncle"></div>
<div id="father>
<div id="me"></div>
</div>
</div>
I am at $("#me") , and I want to select my uncle, using stuff like :
$("#me").find("#uncle")
$("#me").next("#uncle")
$("#me").prev("#uncle")
How ?