Topic: Beginner onmouse java question with code
the onmouseover works but the onmouseout does'nt , Any ideas as to whats wrong? Thanks.
<html>
<head>
<script type="text/javascript">
function mouseOver()
{
document.write("hello!!");
}
function mouseOut()
{
document.write("goodbye!!!");
}
</script>
</head>
<body>
<a onmouseover="mouseOver()" onmouseout="mouseOut()">
Point your mouse here!
</a>
</body>
</html>

