Hi, you could use something like this:
$(function() {
// SmartMenus jQuery - collapse mobile navbar on menu item select
$('.navbar-nav').on('select.smapi', function(e) {
if ($(this).hasClass('sm-collapsible')) {
$('.navbar-toggler')[0].click();
}
});
});
Just include it on your page after jQuery.
If you have multiple navbars on your pages (not very likely), set them specific ids and replace the classes .navbar-nav
and .navbar-toggler
in the code above with the proper ids.