Skip to content

Instantly share code, notes, and snippets.

@adamculpepper
Created July 6, 2018 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamculpepper/b88415e65ba357717da0926845501768 to your computer and use it in GitHub Desktop.
Save adamculpepper/b88415e65ba357717da0926845501768 to your computer and use it in GitHub Desktop.
var checkExist = setInterval(function() {
if ($('#element').length) {
console.log("Exists!");
clearInterval(checkExist);
}
}, 100); // check every 100ms
//source: https://stackoverflow.com/a/16149679
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment