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 Browser or iFrame Window. Test by scrolling down, too.</h1>
  <output id="op">[coordinates will display here]</output>
</body>
</html>
 
var op = document.getElementById('op');
function showCoords(e){
  op.innerHTML = 'clientX value: ' + 
                 e.clientX + '<br>' + 
                 'clientY value: ' + 
                 e.clientY;
}
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