
August 29th, 2000, 02:41 PM
|
 |
film at 11
|
|
Join Date: Aug 2000
Location: Portland, OR
Posts: 413
Time spent in forums: < 1 sec
Reputation Power: 13
|
|
|
i have some <div> layers in a web page, and an image with the attribute
onMouseover="popUp('thePopup');"
where thePopup is the id of one of my layers. here is the popUp function:
function popUp(layerName)
{
if(document.layers)
{ document.layers[layerName].visibility="show"; }
else
{ document.all[layerName].style.visibility="visible"; }
}
this works in IE but not in netscape. what am i doing wrong?
|