I am currently using 2.x Bootstrap version for my single-page application.
On the desktop, it works fine.
However on my ipad and mobile phones, it shows a nav button which is good. However, when I click an item in the dropdown item shown, it does not close automatically.
Since, it's a single page app, I find it annoying to click it again to hide to look at the contents.
I tried collapse('hide') when li is clicked on nav-collapse elements but it hides other li elements in the dropdown menus.
$('.nav-collapse > li').click(function(e)
$(this).collapse('hide')
What's the best way to hide when a link is clicked?
Thanks.