I want to select and toggle() the child of the parent of the parent of an anchor.
This is an example of what I am trying to do. It doesn't work :)
<div>
<div>
<a href="#" onclick="$(this + ':parent:parent .inner').toggle();">hide</a>
</div>
<div class="inner">
To be toggled.
</div>
</div>