Skip to content

Instantly share code, notes, and snippets.

@molotow11
Created February 2, 2021 06:22
Show Gist options
  • Save molotow11/8457f3af0944df671f000d10ede7e30a to your computer and use it in GitHub Desktop.
Save molotow11/8457f3af0944df671f000d10ede7e30a to your computer and use it in GitHub Desktop.
Wait for some script loading
let wait = 0;
var waitForLoad = setInterval(function() {
// wait for $container
if($container.length || wait > 1000){
clearInterval(waitForLoad);
}
wait += 50;
}, 50);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment