Hey all,
I'm trying to build a custom select dialog box. Without getting into all the styling, it's basically a set of nested divs. Here's the pseudo code below...
<div id="customSearchBoxContainer">
<div id="inputBoxWithGraphic">
<input type="text"><img src="arrowdown onclick="showListToSave()">
</div>
<input type="button" value="Save Search">
<div id="listToSave" onmouseout="hideThisDiv()";>
<ul>
<li>Item One</li>
<li>Item One</li>
</ul>
</div>
</div>
Yet when I do the mouseout, it doesn't do it over the "listToSave" div but it seems like the very top one.
I scoured the web for hours and it seems it's a bubbling issue. But I can't find any solution.
Could anyone help me?
Thanks
Donna 
|