I am currently utilizing Twitter Bootstrap along with this plugin for select menus: .
However, I have encountered an issue when attempting to implement this select menu within tabs.
To better showcase the problem I am facing, here is a demo link: http://jsfiddle.net/gbGdY/1/
While the select works perfectly fine outside of tabs, inside tabs it does not properly handle overflow.
Even if I try to override tab overflow like this:
.tab-content {
overflow: visible !important;
}
a new issue arises where the menu drops down and expands to full height.
Therefore, my question is how can I resolve this problem and ensure that the select menu functions correctly inside tabs as it does outside of them?