The MutationObserver
method disconnect()
tells the observer to stop watching for mutations. The observer can be reused by calling its observe()
method again.
mutationObserver.disconnect()
None.
undefined
.
Note: All notifications of mutations that have already been detected but not yet reported to the observer are discarded.
If the element being observed is removed from the DOM and then subsequently released by the browser's garbage collection mechanism, the MutationObserver
is likewise deleted.
This example creates an observer then, later, disconnects from it, leaving it available for possible reuse.
var targetNode = document.querySelector("#someElement"); var observerOptions = { childList: true, attributes: true } var observer = new MutationObserver(callback); observer.observe(targetNode, observerOptions); /* some time later... */ observer.disconnect();
Specification | Status | Comment |
---|---|---|
DOM The definition of 'MutationObserver.disconnect()' in that specification. | Living Standard |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 18 | Yes | 14 | 11 | 15 | 6 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | 18 | Yes | 14 | 14 | 6 | Yes |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver/disconnect