3
Well I know how to identify a click on Cida of an element. I do so:
// Fecha Sidenav
$("#Close_Sidenav").click(function() {
$("#mySidenav").hide();
});
But I need you to $("#mySidenav").hide()
run when I click on the element Close_Sidenav
and when I click off the element mySidenav
.
How do I do it?
For more information I’m trying to get this menu to close when I click off it. Menu
Thank you so much That’s what I wanted
– Hugo Borges