Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <h1>Click anywhere to view your mouse coordinates relative to the page. You can scroll down to test this too.</h1>
  <output id="op">[coordinates will display here]</output>
</body>
</html>
 
var op = document.getElementById('op');
function showCoords(e){
  op.innerHTML = 'pageX value: ' + 
                 e.pageX + '<br>' + 
                 'pageY value: ' + 
                 e.pageY;
}
document.onclick = function (e) {
  showCoords(e);
};
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
ImpressiveWebspro
0viewers