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
My fix for more than one dropdowns in nav menu: Other solutions doesn't work for me
$('.dropdown-toggle').on('click', function (e) { $('.dropdown-toggle').each(function (i,elem) { if (elem != e.target) $(elem.parentElement).removeClass('open'); }); })