Skip to content

Instantly share code, notes, and snippets.

View talent3310's full-sized avatar
🏠
Working from home

Byambatseren B. talent3310

🏠
Working from home
  • Web dev
View GitHub Profile
@chrisjhoughton
chrisjhoughton / wait-el.js
Last active April 17, 2025 08:14
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);
}
};