Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<div>
<ol contenteditable oninput="">
  <li>Press enter</li>
</ol>
</div>
<script>
  var MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver;
  
  
  var observer = new MutationObserver(function(mutations) {  
    mutations.forEach(function(mutation) {
        console.log(mutation.target.nodeName);
    });
  });
  
  observer.observe(document, {
    attributes: true, 
    childList: true, 
    characterData: true
  });
</script>
 
if (document.getElementById('hello')) {
  document.getElementById('hello').innerHTML = 'Hello World - this was inserted using JavaScript';
}
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers