Skip to content

Instantly share code, notes, and snippets.

@travismillerweb
Created February 13, 2014 14:38
Show Gist options
  • Save travismillerweb/8976121 to your computer and use it in GitHub Desktop.
Save travismillerweb/8976121 to your computer and use it in GitHub Desktop.
JS - Exist Checker Polling
var checkExist = setInterval(function() {
if ($('.shareable').length > 0) {
console.log("Exists!");
braggingSeason.getPageNames();
clearInterval(checkExist);
}
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment