hallo,
folgendes sollte im Netscape4/6 und im IE ab 4.0 funktionieren:
<html>
<head>
<title>Maus-Position ermitteln</title>
<script>
if(window.Event)
document.captureEvents(Event.MOUSEMOVE);
document.onmousemove=show_maus;
function show_maus(e)
{
if(window.Event)
var string="X="+e.pageX+", "+"Y="+e.pageY;
else
var string="X="+event.clientX+", "+"Y="+event.clientY;
if(document.getElementById){
document.getElementById("abc").innerHTML = string;
}else{
document.abc.document.open();
document.abc.document.write(string);
document.abc.document.close();
}
}
</script>
</head>
<body>
<div id="abc" style="position:absolute;">
</div>
</body>
</html>
gruß
hartmann