Skip to content Skip to sidebar Skip to footer

Bootstrap 2.1.1 Dropdowns Not Working Properly

I'm having trouble with my dropdowns after upgrading to Bootstrap 2.1.1. The very first dropdown on my page works fine. Opens correctly when clicked on, then closes when clicking o

Solution 1:

You are linking dropdown triggers with their parent, the dropdown container.
This is breaking your triggers, so change:

href="#media"    -> href="#"
href="#tools"    -> href="#"
href="#language" -> href="#"

Post a Comment for "Bootstrap 2.1.1 Dropdowns Not Working Properly"