Why is the script not working?
<script> $(document).ready(function(){ $("activatemenu").click(function(){ $("topmenu").animate({ height:'10rem' }); }); </script> HTML:
<div class="activatemenu"> <i class="fa fa-bars"></i> <p class="mobiletext">Menu</p> </div> Menu block:
<div class="topmenu"></div> I need that when I click on div.activatemenu, the size of .topmenu becomes 10rem Explain to the person that I just started learning JS, thanks in advance c:

});- is it so conceived? - Alexey Shimansky