Created
December 18, 2024 09:17
-
-
Save shiftgeist/6666e2cba9938bea0edf4ce0db2b29dd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function watchForElement<T extends Element = Element>( | |
selector: string, | |
callback: (element: T, observer: MutationObserver) => void, | |
options: MutationObserverInit = { childList: true }, | |
targetNode = document.body, | |
) { | |
const observer = new MutationObserver((mutationsList) => { | |
for (const mutation of mutationsList) { | |
if (mutation.type === 'childList') { | |
const element = document.querySelector<T>(selector); | |
if (element) { | |
callback(element, observer); | |
return; | |
} | |
} | |
} | |
}); | |
observer.observe(targetNode, options); | |
return observer; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment