Skip to content Skip to sidebar Skip to footer

How To Automatically Collapse The Top Navbar On Mobile View After User Tap A Link With Twitter Bootstrap?

I have a 'one page scroll' website with Twitter bootstrap framework. On desktop view, my top navbar is always visible and the different links of the top navbar anchor the user to t

Solution 1:

Try this (I'm assuming bootstrap 3

$('.nav a').on('click', function(){
  $(".navbar-toggle").click() //bootstrap 3.x
});

Post a Comment for "How To Automatically Collapse The Top Navbar On Mobile View After User Tap A Link With Twitter Bootstrap?"