Skip to content

Instantly share code, notes, and snippets.

@ffantasy
Created December 20, 2019 16:03
Show Gist options
  • Save ffantasy/eeaacae2b03c2ad8da159e2694f9c75d to your computer and use it in GitHub Desktop.
Save ffantasy/eeaacae2b03c2ad8da159e2694f9c75d to your computer and use it in GitHub Desktop.
(async function() {
while(!document.querySelector("#yourElem")) {
await new Promise(r => setTimeout(r, 500));
}
)();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment