I am facing an issue with my custom styled drop downs that are being controlled by jQuery. The problem is that in IE8, the drop down always defaults to open and does not close when an item is selected.
URL removed
<section class="main">
<div class="wrapper-demo">
<div id="dd" class="wrapper-dropdown-1" tabindex="1">
<span>Gender</span>
<ul class="dropdown" tabindex="1">
<li><a href="#">Male</a></li>
<li><a href="#">Female</a></li>
</ul>
</div>
</div>
</section>