How to let mobile navigation menu close when link is clicked?

I would use javascript (or jQuery) to detect when the menu item is clicked and close the menu.

$( '.menu-item' ).on( 'click', function(e){
    e.preventdefault();

    // add a class to target with CSS and close the menu or do animation to close it
} );