Skip to content

Instantly share code, notes, and snippets.

@ShuvoHabib
Created November 18, 2018 22:07
Show Gist options
  • Save ShuvoHabib/bc6e1e263ac57afecf3eb86acc12e771 to your computer and use it in GitHub Desktop.
Save ShuvoHabib/bc6e1e263ac57afecf3eb86acc12e771 to your computer and use it in GitHub Desktop.
Ready State JS Solution
(function pollFor() {
if (window.jQuery !== undefined && document.readyState === 'complete') {
try {
} catch (err) {
console.log('TRY ERROR: ' + err);
}
} else {
setTimeout(pollFor, 25);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment