On “PRODUCTS” click I slide up a white div (as seen in attached). When in responsive (mobile and tablet), I would like to automaticly close the responsive navbar and only show the white bar.
I tried:
JavaScript
x
2
1
$('.btn-navbar').click();
2
also tried:
JavaScript
1
2
1
$('.nav-collapse').toggle();
2
And it does work. However in desktop size, it is also called and does something funky to the menu where it shrinks for a second.
Any ideas?
Advertisement
Answer
I’ve got it to work with animation!
Menu in html:
JavaScript
1
8
1
<div id="nav-main" class="nav-collapse collapse">
2
<ul class="nav">
3
<li>
4
<a href='#somewhere'>Somewhere</a>
5
</li>
6
</ul>
7
</div>
8
Binding click event on all a elements in navigation to collapse menu (Bootstrap collapse plugin):
JavaScript
1
7
1
$(function(){
2
var navMain = $("#nav-main");
3
navMain.on("click", "a", null, function () {
4
navMain.collapse('hide');
5
});
6
});
7
EDIT To make it more generic we can use following code snippet
JavaScript
1
9
1
$(function(){
2
var navMain = $(".navbar-collapse"); // avoid dependency on #id
3
// "a:not([data-toggle])" - to avoid issues caused
4
// when you have dropdown inside navbar
5
navMain.on("click", "a:not([data-toggle])", null, function () {
6
navMain.collapse('hide');
7
});
8
});
9