Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h2>MutationObserver Example - childList with subtree</h2>

<p>This page uses the MutationObserver API to watch for changes to the DOM tree. In this case, the MutationObserver is looking for child elements to be changed on the targeted element and the <code>subtree</code> option is set to <code>true</code>. This means the MutationObserver will detect changes to all nodes, not just the immediate children of the targeted element.</p>

<ul id="myList" class="list">
  <li>Apples</li>
  <li>Oranges
    <ul id="nestedList" class="nestedList">
      <li>Mandarins</li>
      <li>Tangerines</li>
      <li>Pomelos</li>
      <li class="nestedchild">Tangelos</li>
    </ul>
  </li>
  <li>Bananas</li>
  <li class="child">Peaches</li>
</ul>

<p><button class="btnStart">Start Observing for Mutations</button> <button class="btnStop" disabled>Stop Observing for Mutations</button></p>

<p><button class="btnChild">Add/Remove Child from Main List</button> <button class="btnSubtree">Add/Remove Child from Nested List</button></p>


              
            
!

CSS

              
                body {
  padding: 0 20px;
  font-size: 1.2em;
}

.list {
  min-height: 176px;
}

button {
  margin: 3px;
}
              
            
!

JS

              
                let mList = document.getElementById('myList'),
    nestedList = document.getElementById('nestedList'),
    btnChild = document.querySelector('.btnChild'),
    btnStart = document.querySelector('.btnStart'),
    btnStop = document.querySelector('.btnStop'),
    btnSubtree = document.querySelector('.btnSubtree'),
    options = {
      childList: true,
      subtree: true
    },    
    observer = new MutationObserver(mCallback);

function mCallback(mutations) {
  for (let mutation of mutations) {
    if (mutation.type === 'childList') {
      console.log('Mutation Detected: A child element has been added or removed.');
    }
  }
}

function doLogAndBtn(msg) {
  console.log(msg);
  btnStart.disabled = !btnStart.disabled;
  btnStop.disabled = !btnStop.disabled;
}

btnStart.addEventListener('click', function () {
  observer.observe(mList, options);
  doLogAndBtn('Observing for mutations: STARTED');
}, false);

btnChild.addEventListener('click', function () {
  if (document.querySelector('.child')) {
    mList.removeChild(document.querySelector('.child'));
  } else {
    mList.insertAdjacentHTML('beforeend', '\n<li class="child">Peaches</li>');
  }
}, false);

btnSubtree.addEventListener('click', function () {
  if (document.querySelector('.nestedchild')) {
    nestedList.removeChild(document.querySelector('.nestedchild'));
  } else {
    nestedList.insertAdjacentHTML('beforeend', '\n<li class="nestedchild">Tangelos</li>');
  }
}, false);

btnStop.addEventListener('click', function () {
  observer.disconnect();
  doLogAndBtn('Observing for mutations: STOPPED');
}, false);
              
            
!
999px

Console