Is there a way to detect which MutationObserver a callback was called from?

321 Views Asked by At

If I have a single callback function and two MutationObservers for two different dom nodes, is there a way to tell which observer triggered the callback when it is called? The work the callback needs to perform is substantially similar, so creating one for each observer seems undesirable.

1

There are 1 best solutions below

1
On

The specific MutationObserver is supplied as the 2nd argument to the callback. See the MDN documentation.