A
ara
Hi,
I have got a table which pops up when the pointer is placed
over a link,as
<div id="metapopup" onMouseOver="showmeta();"
onMouseOut="hidemeta();">
<table border="0" cellpadding="5" cellspacing="0">
<tr>
<td><a href="#">Home </a>
<br><a href="http://www.google.com" target="_blank">Google</a>
<br><a href="http://www.yahoo.com" target="_blank">Yahoo</a>
</td>
</tr>
</table>
</div>
The anchor text is given as
<a href="#" onMouseOver="showmeta();"
onMouseOut="hidemeta();">
Home
</a>
The javascript functions showmeta() and hidemeta() are as below
function hidemeta() {
if (document.getElementById) {
document.getElementById('metapopup').style.visibility =
"hidden";
}
}
function showmeta() {
if (document.getElementById) {
document.getElementById('metapopup').style.visibility =
"visible";
}
}
I am experiencing a problem with this, as a javascript drop
down menu in the page is masking the portion of the pop up table
behind it.
Please suggest a solution
Thanks in advance
Ara
I have got a table which pops up when the pointer is placed
over a link,as
<div id="metapopup" onMouseOver="showmeta();"
onMouseOut="hidemeta();">
<table border="0" cellpadding="5" cellspacing="0">
<tr>
<td><a href="#">Home </a>
<br><a href="http://www.google.com" target="_blank">Google</a>
<br><a href="http://www.yahoo.com" target="_blank">Yahoo</a>
</td>
</tr>
</table>
</div>
The anchor text is given as
<a href="#" onMouseOver="showmeta();"
onMouseOut="hidemeta();">
Home
</a>
The javascript functions showmeta() and hidemeta() are as below
function hidemeta() {
if (document.getElementById) {
document.getElementById('metapopup').style.visibility =
"hidden";
}
}
function showmeta() {
if (document.getElementById) {
document.getElementById('metapopup').style.visibility =
"visible";
}
}
I am experiencing a problem with this, as a javascript drop
down menu in the page is masking the portion of the pop up table
behind it.
Please suggest a solution
Thanks in advance
Ara