Auto-Close Menu

Below is some JavaScript code you can use that will auto close Menu components on mobile when an item is selected.

You may paste the following into the JavaScript section of the Layout or Page where the menu is located.

$('.navbar .item').on("click",function(){
    $(".navbar-collapse").collapse('hide');
});

$('.nav .item.dropdown-submenu').unbind();
4 Likes

Thank you very much… AGAIN!! :smiley:

1 Like

@Chem this is no longer working with the new mobile friendly layouts. Can you suggest a way to to make this code to work with the new layouts or add the option to auto-close on click in the actual layout settings?