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

Home
JavaScript Reference
1.Event Handlers Reference
2.Javascript Collections
3.Javascript Methods
4.Javascript Objects
5.Javascript Properties
JavaScript Reference » Javascript Properties » x 
'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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.