Access next tag

Access next tag


Hi,
I have a requirement in which I need to access the next element.
like
<div class="a">
<div class="b">
<div class="e"></div>
</div>
<div class="c"></div>
</div>
Now this structure is repeated,
what what I want is on click of "e" I need to toggle appearance of "c"
based on which "e" has been clicked because this structure is
repeating I can not specify Id to div's. so how can I get this
functionality?