Observe DOM mutations with jQuery
A jQuery plugin which simplifies the use of the new DOM Mutation Observer interface introduced in newer browsers.
jquery-observe.jscontains the compiled and minified version of the plugin.
Available through
bower
bower install jquery-observe
And
npm
npm install @kapetan/jquery-observer
At this point the Mutation Observer API is only available in newer versions of Google Chrome (>= 18) and Mozilla Firefox (>= 14). Can be useful when developing extensions (add-ons) that use content scripts, on a page that you don't control.
There is a fallback for browsers who don't support the Mutation Observer API (mainly IE9 and Opera), using the deprecated DOM Mutation Events interface. These don't act completely as Mutation Observers, and can cause some different behaviour between browsers. For instance an event is fired for every descendant of an inserted node, where only one record is dispatched when using Mutation Observers. Furthermore because mutation events don't have the same information associated with them as Mutation Observer records, some contextual selectors may not match removed nodes. Some of those are
:first,
:first-child,
:eq,
:last,
:last-child,
:evenand
:odd(not an exhaustive list).
The observe interface
$.fn.observe()is somewhat similar to the jQuery event api using the
$.fn.on()method.
$('#content') .observe('attributes', function(record) { // Observe attribute changes on #content }) .observe('childlist subtree', function(record) { // Observe changes in the subtree }) .observe({ attributes: true, attributeFilter: ['class'] }, function(record) { // Observe changes in attribute class on #content });
The callback function gets passed the MutationRecord instance matching the query.
The first argument can either be a string or an object containing the options which are passed to
MutaionObserver.observe()method. See the w3c documentation for Mutation Observer for more information on the available options.
All the above observers are collapsed into a single Mutation Observer object using #content as target.
The real power comes when using a selector to filter the elements.
$('#content') .observe('childlist', 'ul li:first', function(record) { // Observe if elements matching '#content ul li:first' have been added or removed }) .observe('attributes', '.section p:visible', function(record) { // Observe if elements matching '#content .section p:visible' have been added or removed })
In the above callback functions
thisrefers to the available matched DOM element. In the case where no selector is given
thisalways refers to the element which
.observe()was called on. When a selector is present
thisreferences different elements.
Records of type attributes:
thisrefers to the node which had an attribute changed.
Records of type characterData:
thisrefers to the parent element of the text node which had its content modified. The modified text node can be retrieved trough
record.target.
Records of type childList and the selector matches an added node:
thisrefers to the added node.
Records of type childList and the selector matches a removed node:
thisrefers to the parent of the removed node (since the removed node is no longer available in the DOM).
This also means that the callback is called for every matched element (similar to
$.fn.on()).
Using the above defined observers with the following HTML:
Hello
Running
$('#content ul').append('
$('#content ul li:first').append(''), since the observe selector only matches nodes that either have been added or removed.
Running
$('#content ul').prepend('
thiswill reference to the newly inserted node.
Running
$('#content ul li:first').remove()also triggers the first observer. In this case
thiswill reference to the parent of the removed element (the ul element).
Running
$('#content ul li:first span').remove()will not trigger the first observer.
Running
$('#content span p').addClass('myClass')triggers the second observer.
Note that the changes to the DOM don't have to be performed using jQuery. The last example can also be run using plain javascript
document.getElementsByClassName('hello')[0].className += ' myClass'.
There are two custom Mutation Observer options which can be used together with the other options. These are added and removed. Which only trigger an observer if either a node has been added or removed.
$('#content') .observe('added', 'li:first', function(record) { // Only called if a node matching '#content li:first' has been added }) .observe('removed', 'li:first', function(record) { // Only called if a node matching '#content li:first' has been removed });
Using the options
'added removed'is equivalent to
'childlist'.
Use the
$.fn.disconnect()method to remove an observer. The arguments must match the arguments given to the
$.fn.observe()method. Or call the disconnect method without arguments to remove all observers. The underlying Mutation Observer is disabled when there are no observers listening for changes.
There are some problems getting the characterData option to work in Chrome (may be because of bug #134322).
This software is licensed under "MIT"
Copyright (c) 2012 Mirza Kapetanovic
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.