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>
  <ul id="none">
    <li id="1">1</li>
    <li id="2">2</li>
    <li id="3">3</li>
  </ul>
</body>
</html>
 
var ul = document.querySelector('ul');
ul.addEventListener('click', function(event) {
  alert(event.target.id);
});
Output

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

Dismiss x
public
Bin info
tsongaspro
0viewers