MajorTechie
Programmer
More freakin' Netscape problems. I have an expandable/collapsable menu script using DHTML. I've simplified it here just to give a snippit. Point being, Netscape doesn't like it and gives me the following errors:
ACPower is not defined.
window.ACPower has no properties.
Here's the code:
<SCRIPT LANGUAGE="JavaScript">
function ACPowerOpen() {
window.ACPower.style.display = "list-item";
}
function ACPowerClose() {
window.ACPower.style.display = "none";
}
</script>
<a class="text" href="../distribution" onMouseOver="ACPowerOpen();" OnMouseOut="ACPowerClose();">AC Power Distribution</a>
<a class=text name="ACPower" style="display:none">test</a>
ACPower is not defined.
window.ACPower has no properties.
Here's the code:
<SCRIPT LANGUAGE="JavaScript">
function ACPowerOpen() {
window.ACPower.style.display = "list-item";
}
function ACPowerClose() {
window.ACPower.style.display = "none";
}
</script>
<a class="text" href="../distribution" onMouseOver="ACPowerOpen();" OnMouseOut="ACPowerClose();">AC Power Distribution</a>
<a class=text name="ACPower" style="display:none">test</a>