Good morning, for the mobile menu of my site, I made this model:
Thesiteisonepage,andwhenIclickon"contacts", the page goes down, but the menu is still open ... How do I when to click on any menu item, the menu will be closed?
I made the menu work with this JS code:
$(".btn-menu").click(function(){
$(".menu").show();
});
$(".btn-close").click(function(){
$(".menu").hide();
});
$(".fotodomenuz").click(function(){
$(".menu").show();
});