Skip to content

Instantly share code, notes, and snippets.

@dineshdeveloper1
Created January 6, 2022 08:44
Show Gist options
  • Save dineshdeveloper1/c33677002894dbf2388f863346dfb7ed to your computer and use it in GitHub Desktop.
Save dineshdeveloper1/c33677002894dbf2388f863346dfb7ed to your computer and use it in GitHub Desktop.
Custom Poller
var poller = setInterval(function() {
if ($('.element_name').length) {
console.log("Exists!");
clearInterval(poller);
}
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment