I'm trying to get this code to work, basically there is a div with code:
<div id="diva" style="position:relative; height:69; width:238; top:-444; left:-229; visibility:hidden; filter:alpha(opacity=90);">
<a onmouseout="hidediva()">
<table width="100%" cellpadding="0" cellspacing="0">
<tr><td><a href=".php" onmouseover="document.pimga.src='flyout/pres_hi.jpg';forceovera()" onmouseout="document.pimga.src='flyout/pres.jpg'"><img src="flyout/pres.jpg" name="pimga" border=0></a></td></tr>
<tr><td><a href=".php" onmouseover="document.pimgb.src='flyout/overview_hi.jpg';forceovera()" onmouseout="document.pimgb.src='flyout/overview.jpg'"><img src="flyout/overview.jpg" name="pimgb" border=0></a></td></tr>
<tr><td><a href=".php" onmouseover="document.pimgc.src='flyout/obj_hi.jpg';forceovera()" onmouseout="document.pimgc.src='flyout/obj.jpg'"><img src="flyout/obj.jpg" name="pimgc" border=0></a></td></tr>
</table>
</a>
</div>
The hidediva(); function is supposed to set this div (which looks like a DHTML Menu flyout) to go back to being hidden, however when I run the mouseover INSIDE the div, it will disappear when I move to a different image in the div. Is there a way to prevent this?
<div id="diva" style="position:relative; height:69; width:238; top:-444; left:-229; visibility:hidden; filter:alpha(opacity=90);">
<a onmouseout="hidediva()">
<table width="100%" cellpadding="0" cellspacing="0">
<tr><td><a href=".php" onmouseover="document.pimga.src='flyout/pres_hi.jpg';forceovera()" onmouseout="document.pimga.src='flyout/pres.jpg'"><img src="flyout/pres.jpg" name="pimga" border=0></a></td></tr>
<tr><td><a href=".php" onmouseover="document.pimgb.src='flyout/overview_hi.jpg';forceovera()" onmouseout="document.pimgb.src='flyout/overview.jpg'"><img src="flyout/overview.jpg" name="pimgb" border=0></a></td></tr>
<tr><td><a href=".php" onmouseover="document.pimgc.src='flyout/obj_hi.jpg';forceovera()" onmouseout="document.pimgc.src='flyout/obj.jpg'"><img src="flyout/obj.jpg" name="pimgc" border=0></a></td></tr>
</table>
</a>
</div>
The hidediva(); function is supposed to set this div (which looks like a DHTML Menu flyout) to go back to being hidden, however when I run the mouseover INSIDE the div, it will disappear when I move to a different image in the div. Is there a way to prevent this?