Hi, i have some absolute positioned draggable layers on a page, they contain controls for changing the page properties, bgColor. fgColor etc....
The layers display property is set to none onmouseout, which is fine.. however, the problem is - they contain the <select> tag, and once you mouseover the options in the select tag, it acts as if it's not part of the span and the layer is hidden. Is the a way around this?
It's for IE only, Cheers.
Here's a quick example:
The layers display property is set to none onmouseout, which is fine.. however, the problem is - they contain the <select> tag, and once you mouseover the options in the select tag, it acts as if it's not part of the span and the layer is hidden. Is the a way around this?
It's for IE only, Cheers.
Here's a quick example:
Code:
<html>
<body>
<span style="padding: 20px; width: 200px; height: 200px; background-color: #ccc; border: 1px solid #000; position: absolute; top: 15px; left: 15px;" onMouseLeave="this.style.display = 'none';">
<select>
<option>optOne
<option>optTwo
<option>optThree
</select>
</span>
</body>
</html>