HI,
I have a div, inside which I have added a html select option.
When the page is viewed in browers other than IE, I am not able to select the values properly. Clicking on the arrow on the select option opens it, but not on select from the item.
Below is the select code used:
<div id="sidebar">
<select id="ddlTests" style="font-size: 9pt;">
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
</select>
</div>
//css
#sidebar
{
float: right;
width: 200px;
padding: 10px;
height: 280px;
}
You can click on them to open the drop-down, and if you mouse over elements in the drop-down, they get highlighted. But clicking on the elements in the drop-down doesn't work; it doesn't get selected.
How to fix this?
Thank ...
Go to the complete details ...