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>
  <button>ON CLICK</button>
  
  <button>ON MOUSE DOWN</button>
  
  <button>ON MOUSE UP</button>
  
  <output>[Button result will display here]</output>
</body>
</html>
 
var btnc = document.getElementsByTagName('button')[0],
    btnmd = document.getElementsByTagName('button')[1],
    btnmu = document.getElementsByTagName('button')[2],
    op = document.getElementsByTagName('output')[0];
    txt = 'Button that was pushed: ';
btnc.onclick = function (e) {
  op.innerHTML = txt + e.button;
};
btnmd.onmousedown = function (e) {
  op.innerHTML = txt + e.button;
};
btnmu.onmouseup = function (e) {
  op.innerHTML = txt + e.button;
};
Output

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

Dismiss x
public
Bin info
ImpressiveWebspro
0viewers