Created
February 19, 2016 15:21
-
-
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/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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