The link to the code is here:
This is the code:
<SCRIPT TYPE = "TEXT/JAVASCRIPT" LANGUAGE = JAVASCRIPT>
<!--Hide script from older browsers
function toggleMenu(currMenu){
if(document.all){
thisMenu = eval("document.all." + currMenu + ".style"
if (thisMenu.display == "block"
{
thisMenu.display = "none"
}
else{
thisMenu.display = "block"
}
return false
}
else{
return true
}
}
//End hiding script -->
</SCRIPT>
and here is how I'm using it within the html:
<a href="#null" onClick="return toggleMenu('summary')">Site Summary</a>
Can anyone tell me what to do to fix this so that it will work in at least one version of Netscape? Thanks so much.
Jewel
This is the code:
<SCRIPT TYPE = "TEXT/JAVASCRIPT" LANGUAGE = JAVASCRIPT>
<!--Hide script from older browsers
function toggleMenu(currMenu){
if(document.all){
thisMenu = eval("document.all." + currMenu + ".style"
if (thisMenu.display == "block"
thisMenu.display = "none"
}
else{
thisMenu.display = "block"
}
return false
}
else{
return true
}
}
//End hiding script -->
</SCRIPT>
and here is how I'm using it within the html:
<a href="#null" onClick="return toggleMenu('summary')">Site Summary</a>
Can anyone tell me what to do to fix this so that it will work in at least one version of Netscape? Thanks so much.
Jewel