Oh man, I\'ve been tearing my hair out over this. 4 hours on a dropdown.
I\'m using Twitter Bootstrap.
The fixed nav at the top has a dropdown, pretty standard s
I was seeing the same problem with 2.1.1.
The solution that was posted on GitHub which worked easily for me was:
$('body').on('touchstart.dropdown', '.dropdown-menu', function (e) { e.stopPropagation(); });
Credit to blakeembrey at https://github.com/twitter/bootstrap/issues/5094