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>
  <ol contenteditable oninput="">
    <li>Press enter and look at the console</li>
  </ol>
</body>
</html>
 
  var MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver;
var list = document.querySelector('ol');
var Observer = new MutationObserver(function(mutations){
  mutations.forEach(function(mutation){
    console.log(mutation);
  });
});
Observer.observe(list, {
  childList: true,
  subtree: true
});
list.appendChild(document.createElement('div'));
list.appendChild(document.createTextNode('foo'));
list.removeChild(list.childNodes[0]);
list.childNodes[0].appendChild(document.createElement('div'));
Output

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

Dismiss x
public
Bin info
andypinetpro
0viewers