How to close the navigation drawer with jquery or javascript ?
this can be easily done via calling
$('navigation_drawer_css_selector').menu('hide');
1 Like
Thank You. Until now I was doing it with a workaround of 2 lines… but this one is nice.