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>
  
  <div class="parent" id="parent">
   <div class="child" id="child">
   </div>
  </div>
  
  <output id="op"></output>
  <output id="op2"></output>
</body>
</html>
 
var parent = document.getElementById('parent'),
    child  = document.getElementById('child'),
    op     = document.getElementById('op'),
    op2    = document.getElementById('op2');
parent.addEventListener('click', function () {
  op.innerHTML += '<p>click registered</p>';
}, false);
function stopEvent (e) {
  e.stopPropagation();
  op2.innerHTML += '<p>propagation stopped</p>';
}
child.addEventListener('click', stopEvent, false);
Output

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

Dismiss x
public
Bin info
ImpressiveWebspro
0viewers