jQuery Chosen div falls behind Twitter Bootstrap accordion

css, html, jquery, jquery-chosen, twitter-bootstrap

Solution

The problem is because `.collapse` has `overflow: hidden`. Obviously absolutly positioned chosen dropdown will be clipped. – dfsq 2 days ago

Problem

I'm using the jQuery Chosen plugin inside a Twitter Bootstrap accordion. The problem that I have is that the dropdown menu of the Chosen plugin appears 'under' the `div` of the accordion menu. I tried to set the `z-index` to a higher value, but that didn't do the trick. I made an example of my problem: http://jsfiddle.net/8BAZY/1/ If you click on the `select` box you'll see that the menu appears under the `div`. How can I let the dropdown appear ontop of the accordion div, so I can see all the results?

Original source