The following works in Internet Explorer 6 and Opera, but not Netscape 7.1.
Is there any way to make this work in all three browsers?
<html>
<head>
<title>Menu</title>
</head>
<body>
<div style="position : absolute; left: 250; top: 172; width: 62; height: 115"
id="dv1">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse:
collapse" bordercolor="#1 11111" width="100%" id="tb1"
onMouseover="tb 2.style.visibil ity='visible';"
onMouseout="tb2 .style.visibili ty='hidden';">
<tr>
<td width="100%" bgcolor="#0000F F"><b><font size="4"
color="#FFFFFF" >Menu</font></b></td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse:
collapse" bordercolor="#1 11111" width="100%" id="tb2">
<tr>
<td width="100%" bgcolor="#00FFF F">Item 1</td>
</tr>
<tr>
<td width="100%" bgcolor="#00FFF F">Item 2</td>
</tr>
<tr>
<td width="100%" bgcolor="#00FFF F">Item 3</td>
</tr>
<tr>
<td width="100%" bgcolor="#00FFF F">Item 4</td>
</tr>
<tr>
<td width="100%" bgcolor="#00FFF F">Item 5</td>
</tr>
</table>
</div>
<script>
tb2.style.visib ility="hidden";
//tb2.style.visib ility="visible" ;
</script>
</body>
</html>
Is there any way to make this work in all three browsers?
<html>
<head>
<title>Menu</title>
</head>
<body>
<div style="position : absolute; left: 250; top: 172; width: 62; height: 115"
id="dv1">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse:
collapse" bordercolor="#1 11111" width="100%" id="tb1"
onMouseover="tb 2.style.visibil ity='visible';"
onMouseout="tb2 .style.visibili ty='hidden';">
<tr>
<td width="100%" bgcolor="#0000F F"><b><font size="4"
color="#FFFFFF" >Menu</font></b></td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse:
collapse" bordercolor="#1 11111" width="100%" id="tb2">
<tr>
<td width="100%" bgcolor="#00FFF F">Item 1</td>
</tr>
<tr>
<td width="100%" bgcolor="#00FFF F">Item 2</td>
</tr>
<tr>
<td width="100%" bgcolor="#00FFF F">Item 3</td>
</tr>
<tr>
<td width="100%" bgcolor="#00FFF F">Item 4</td>
</tr>
<tr>
<td width="100%" bgcolor="#00FFF F">Item 5</td>
</tr>
</table>
</div>
<script>
tb2.style.visib ility="hidden";
//tb2.style.visib ility="visible" ;
</script>
</body>
</html>
Comment