I\'m using the default navbar and a couple of the list items are dropdowns. I\'m not able to click the link that triggers the dropdown. I know that I could just add a duplic
Alternatively here's a simple jQuery solution:
$('#menu-main > li > .dropdown-toggle').click(function () { window.location = $(this).attr('href'); });