Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.08 KB

2016-02-15-detect-document-ready-in-pure-js.md

File metadata and controls

39 lines (31 loc) · 1.08 KB

title: Detect document ready in pure JS tip-number: 46 tip-username: loverajoel tip-username-profile: https://www.twitter.com/loverajoel tip-tldr: The cross-browser way to check if the document has loaded in pure JavaScript tip-writer-support: https://www.coinbase.com/loverajoel

  • /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 is 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.