Skip to content

Instantly share code, notes, and snippets.

View sohaibtariq's full-sized avatar

Sohaib sohaibtariq

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));