adgsm/multi-level-push-menu

Close menu when clicking anywhere on screen

royashgit opened this issue · 1 comments

Is there a way to close the menu when clicking anywhere on the mobile screen?

adgsm commented

Yes, you can invoke collapse method on body click event.

$( 'body' ).on( 'click' , function( ev ){
    $('#menu').multilevelpushmenu( 'collapse' );
} );