$('.nav a').on('click', function () {
if ($('.navbar-toggle').css('display') != 'none') {
$(".navbar-toggle").click()
}
});
$('.navbar .nav li a').on('click', function () {
if ($('.navbar-toggle').css('display') != 'none') {
$(".navbar-toggle").click()
}
});
It may even tell me how to do so, to not show mobile menu when the browser resolution from 991 to 768 ??? - eldora_Thompson commented on June 8th 19 at 17:08
from 768 and above have the regular menu - eldora_Thompson commented on June 8th 19 at 17:29
Easier to 991 to do to display mobile menu. - casandra.Kemmer commented on June 8th 19 at 17:32