Skip to content

Instantly share code, notes, and snippets.

View mehnoorsiddiqui's full-sized avatar
🎯
Focusing

Mehnoor Siddiqui mehnoorsiddiqui

🎯
Focusing
View GitHub Profile
<script>
function waitForElm(selector) {
return new Promise(resolve => {
if (document.querySelector(selector)) {
return resolve(document.querySelector(selector));
}
const observer = new MutationObserver(mutations => {
if (document.querySelector(selector)) {
resolve(document.querySelector(selector));