Skip to content

Instantly share code, notes, and snippets.

@robertdevore
Forked from chrisjhoughton/wait-el.js
Created July 10, 2020 14:35
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 robertdevore/25c30f13a93d0b3e60066344783501c4 to your computer and use it in GitHub Desktop.
Save robertdevore/25c30f13a93d0b3e60066344783501c4 to your computer and use it in GitHub Desktop.
Wait for an element to exist on the page with jQuery
var waitForEl = function(selector, callback) {
if (jQuery(selector).length) {
callback();
} else {
setTimeout(function() {
waitForEl(selector, callback);
}, 100);
}
};
waitForEl(selector, function() {
// work the magic
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment