DsgnrsTLZAdmin
01-15-2004, 02:00 AM
onmousemove? followmouse function? never seen that used before, that code seems serously wrong somehow but if it works in other browsers beside netscape then try this...
<head>
<script>
function followmouse()
{
document.getElementById('Trail').style.top = e.pageY
document.getElementById('Trail').style.left = e.pageX
}
document.onMouseMove="followmouse"
</script>
<style type="text/css">
.Trail{ position: absolute; top: 0; left: 0; }
</style>
</head>
<body>
<img src=http://www.codingforums.com/archive/index.php/http://www.codingforums.com/archive/index.php/"Image.gif" id="Trail" class="Trail">
<head>
<script>
function followmouse()
{
document.getElementById('Trail').style.top = e.pageY
document.getElementById('Trail').style.left = e.pageX
}
document.onMouseMove="followmouse"
</script>
<style type="text/css">
.Trail{ position: absolute; top: 0; left: 0; }
</style>
</head>
<body>
<img src=http://www.codingforums.com/archive/index.php/http://www.codingforums.com/archive/index.php/"Image.gif" id="Trail" class="Trail">
