mutation-observer

Simple wrapper for using DOM mutation events

Ezt a szkriptet nem ajánlott közvetlenül telepíteni. Ez egy könyvtár más szkriptek számára, amik tartalmazzák a // @require https://update.greasyfork.org/scripts/7602/32979/mutation-observer.js hivatkozást.

Fejlesztő
spiralx
Verzió
0.1.0
Létrehozva
2015.01.22.
Frissítve
2015.01.22.
Size
60 KB
Licensz
Ismeretlen

mutation-summary

Library based on DOM Mutation Observers which allows triggering of events on the following conditions:

  • a node is added to the document
  • a node is removed from the document
  • the content of a node is changed
  • an attribute of the node is changed

This library simplifies the process of setting up and using mutation observers e.g.

function updateWidgets(summaries) {
  var widgetSummary = summaries[0];
  widgetSummary.added.forEach(buildNewWidget);
  widgetSummary.removed.forEach(cleanupExistingWidget);
}

var observer = new MutationSummary({
  callback: updateWidgets,
  queries: [{
    element: '[data-widget]'
  }]
});