'x' Example : x « Javascript Properties « JavaScript Reference

'x' Example

    
<html>
<body>
<script language="JavaScript">
function function1() {
    myX.innerHTML = window.event.x;
    myY.innerHTML = window.event.y; 
} 
</script>
<p>
    <b>X:</b> 
    <span id="myX">0</span>
</p>
<p>
    <b>Y:</b> 
    <span id="myY">0</span>
</p>
<div id="myDiv" onmousemove="function1();" style="width:500; height:200;"></div>
</body>
</html>

    
      
      








Related examples in the same category

1.'x' Syntax and Note
2.'x' is applied to