Skip to content

Instantly share code, notes, and snippets.

@paligiannis
Forked from chrisjhoughton/wait-el.js
Created February 9, 2022 19:07
Show Gist options
  • Save paligiannis/502c13a061bdd7651acf2c3ffe6739a7 to your computer and use it in GitHub Desktop.
Save paligiannis/502c13a061bdd7651acf2c3ffe6739a7 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