I am trying to get my link on mouseover to pop up text saying "Under Construction". I have tried some of the below where it works in IE but not in my Netscape 4.77 browswer. Please advise how I can get this to work?
I also tried:
Code:
<html>
<head>
<title>Untitled</title>
</head>
<body>
<a href="[URL unfurl="true"]www.mysite.com"[/URL] onmouseover="document.getElementById('linkInfo').innerHTML='Under Construction';" onmouseout="document.getElementById('linkInfo').innerHTML='';">mysite link</a> <span id="linkInfo"></span>
</body>
</html>
I also tried:
Code:
<script>
function changer(layerRef, state)
{
eval("document" + layer + "['" + layerRef + "']" + ".visibility = '" + state + "'");
}
</script>
<div name="layer" id="layer">
Under Construction
</div>
<a href="#" onmouseout="changer('layer','hidden')" onmouseover="changer('layer', 'visible')">mysite linke</a>