Skip to content

Instantly share code, notes, and snippets.

@nederev
Created March 4, 2020 16:20
Show Gist options
  • Select an option

  • Save nederev/c26cf2a170af4f0200a8f52a877ad084 to your computer and use it in GitHub Desktop.

Select an option

Save nederev/c26cf2a170af4f0200a8f52a877ad084 to your computer and use it in GitHub Desktop.
var elementSelector = '#someElement';
var checkExist = setInterval(function() {
if ($(elementSelector).length >= ) {
console.log("element loaded!");
clearInterval(checkExist);
}
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment