Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body
  onmousedown="myFunction(event)"
  onmouseup="myFunction(event)"
  onkeydown="myFunction(event)"
  onkeyup="myFunction(event)">
<p>Press any key or click the mouse in this document to get what type of event that was triggered.</p>
<p>Event: <span id="demo"></span></p>
<script>
function myFunction(event) {
  var x = event.type;
  document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>