Hello. There is a link
<div class="menu"> <a href="/">меню</a> </div>
And on the same page there is a block:
<div class="menu_block"> //инфа </div>
Default values for this block
.menu_block { background-color: #eaeaea; width: 100%; height: 100%; position: absolute; z-index: 999; display: none; }
How to make it so that when clicking on the menu link, the display value of the menu_block block changes to block?
How to track click on a link or a block in css?
I would be grateful for the help!