I have this hierarchy in HTML
<div class="footer">
<div class="send_show" style="height: 754px;"></div>
<div class="forms_sends">
<span class="sends">
<div class="icon-container">
<button class="send">ENVIAR</button>
</div>
</div>
</div>
and I hope that when the class .send
button is clicked, a message appears in send_show
. But there are several hierarchies of this on the page, that is, you should get the send_show
of the respective button.
I'm using jQuery to accomplish this.