DOM element blacklists with mutation observers

I would like to use Mutation Observers in Chrome to monitor DOM changes throughout the document. However, I would like to blacklist specific items with some id. Is there any way to do this?

+5
source share
1 answer

Use the mutation-resulting library found here: http://code.google.com/p/mutation-summary/ . An element query summarizes the changes in the presence and location of elements corresponding to a given selector row. found here: http://code.google.com/p/mutation-summary/wiki/APIReference#The_element_Query

+4
source

All Articles