Click to See Complete Forum and Search --> : Mouse Over problem


krahb
02-20-2003, 05:01 PM
I have the following html code on my page:

<table>
<tr>
<td onMouseOut="nd(); return true;" OnMouseOver="dlc('This is my mouse-over tag message','');">My Text
</td>
</tr>
</table>

The function dlc() which is part of overlib.js library works fine, except when I have a graph applet placed right after the <table>. In this case the displayed mouse-over tag message slips "underneath" the applet below when mouse is rolled over the "My Text" text. Why is that and does someone have a solution for this?

Thanks in Advance,
Krahb

gil davis
02-20-2003, 05:54 PM
There's not much you can do other than move the menu, move the applet, or make the applet hidden while the menu is active.

The applet, along with object, embed, and (in most browsers) form elements, have visual priority over other HTML tags. Also, z-index does not make any difference.