Forum Moderators: open
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">
<script language="JavaScript" type="text/JavaScript">
function Hide(str) {
x = document.getElementById(str);
x.style.visbility = 'hidden';
}
function Show(str) {
x = document.getElementById(str);
x.style.visbility = 'visible';
}
</script>
</head>
<body>
<div id="Layer02" style="position:absolute;left:100px;top:100px;visibility:hidden;">Test</div>
<div id="Layer01" style="position:absolute;left:50px;top:50px" onMouseOver="Show('Layer02')" onMouseOut="Hide('Layer02')">Text</div>
</body>
</html>
Cant figure it out. THanks for help.
<script language="JavaScript" type="text/JavaScript">
function Hide(str) {
x = document.getElementById(str);
x.style.visibility = 'hidden';
x.style.position = 'fixed';
}
function Show(str) {
x = document.getElementById(str);
x.style.visibility = 'visible';
x.style.position = 'relative';
}
</script>
</head>
<body>
<div id="Layer01" onMouseOver="Show('Layer02')" onMouseOut="Hide('Layer02')">Text Top</div>
<div id="Layer02" style="visibility:hidden; position: fixed;" onMouseOut="Hide('Layer02')" onMouseOver="Show('Layer02')">Test close</a></div>
<div style="position: relative;">This Moves Up and Down</div>
Seems to work on everything but Safari :(