I've the following code in a table cell which is supposed to show
a hyperlink, and when onMouseover it popsup a menu of hyperlinks,
and hides it, once we are onMouseOut. This works fine with IE.
But it doesn't work in netscape 4.8. Other thing is even in netscape
it is identifying the place of the popup links. when i click on that place
where popup link is supposed to be there it directs to the corrosponding
page correctly. Only thing is it is not displaying it.
Here is the code
Code:
<td>
<a href = "" onmouseout="menuA.style.visibility='hidden'" onmouseOver="menuA.style.visibility='visible'">Administration</a>
<div style="position:relative;background:#F6D5C3;visibility:hidden; z-index:90;" id="menuA" class="popup" onmouseover="this.style.visibility='visible'" onmouseout="this.style.visibility='hidden'">
<a href="SamplevolunteerReport.html" target="dynamic">Track&Alert</a>
<a href = "">Security&Maintainance</a>
<a href = "">Verification</a> <br>
<a href = "">Pending Registrations&Approvals</a>
</div>
</td>
Any thoughts please
Thanks