(click this and it displays it)
CODE
<a href="#" onclick="javascript:toggle_box('openb1');">Test</a>
(the code it displays)
CODE
<div id="openb1" class="box" style="display:none;" onmouseout="this.style.display='none';">
<div class="boxrow">Testing1</div>
<div class="boxrow">Testing2</div>
<div class="boxrow">Testing3</div>
<div class="boxrow">Testing4</div>
</div>
<div class="boxrow">Testing1</div>
<div class="boxrow">Testing2</div>
<div class="boxrow">Testing3</div>
<div class="boxrow">Testing4</div>
</div>
So, anything inside of the "openb1" that is in a div or span causes it to close when it is mouse overed. Basically, whenever the mouse hovers over "boxrow" it thinks it is outside of "openb1" and shuts itself. Can someone tell me how to stop this?
