I have two links one is called links and the other information. My question is, how can I do with jquery that when I click on links a div appears and when I click on information the links div disappears and the div information appears.
The html code is as follows
<section class="botones">
<div class="bloque_btn">
<div class="btn btn_izq">
<a href="#">enlaces</a>
</div>
<div class="btn btn_drch">
<a href="#">información</a>
</div>
</div>
</section>
<section>
<div id="bloque_enlaces"></div>
<div id="bloque_info"></div>
</section>