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 id="foo">Button</button>
  <button id="bar">Button</button>
  <button id="baz">Button</button>
  <button id="qux">Button</button>
</body>
</html>
 
var buttons = document.querySelectorAll('button');
for (var i=0; i<buttons.length; ++i) {
  buttons[i].addEventListener('click', clickFunc);
}
function clickFunc() {
  alert(this.id); 
}
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers