chosen and opacity
opacity on surrounding divs causes chosen-dropdown to "underlap" these...
by Michael Baas
HTML
<link rel="stylesheet" href="https://harvesthq.github.io/chosen/chosen.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script src="https://harvesthq.github.io/chosen/chosen.jquery.js"></script>
<div class="container">
<div style="background-color: gray;height: 2em;width=100%;opacity: .9; z-index:2;">
my select:<select id="foo" placeholder="Prompt"><option>first</option><option>second</option><option>third</option><option>fourth</option></select>
<br />more text
</div>
</div>
<br />
<div style="background-color: blue;width=100%;opacity: .9;z-index:1;">
footer
</div>
JavaScript
$(function (){$("#foo").chosen();})