Skip to content

Instantly share code, notes, and snippets.

@shiftgeist
Created December 18, 2024 09:17
Show Gist options
  • Save shiftgeist/6666e2cba9938bea0edf4ce0db2b29dd to your computer and use it in GitHub Desktop.
Save shiftgeist/6666e2cba9938bea0edf4ce0db2b29dd to your computer and use it in GitHub Desktop.
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