Skip to content

Instantly share code, notes, and snippets.

@mikesprague
Created February 19, 2016 15:21
Show Gist options
  • Save mikesprague/cc293a2592b25a85130c to your computer and use it in GitHub Desktop.
Save mikesprague/cc293a2592b25a85130c to your computer and use it in GitHub Desktop.
Cross-browser way to check if document has loaded (vanilla JS)From http://www.jstips.co/en/detect-document-ready-in-pure-js/
// The cross-browser way to check if the document has loaded in pure JavaScript is using readyState.
if (document.readyState === 'complete') {
// The page is fully loaded
}
// You can detect when the document it's ready...
let stateCheck = setInterval(() => {
if (document.readyState === 'complete') {
clearInterval(stateCheck);
// document ready
}
}, 100);
// or with onreadystatechange...
document.onreadystatechange = () => {
if (document.readyState === 'complete') {
// document ready
}
};
// Use document.readyState === 'interactive' to detect when the DOM is ready.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment