Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 1.14 KB

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

File metadata and controls

50 lines (38 loc) · 1.14 KB
layout title tip-number tip-username tip-username-profile tip-tldr tip-writer-support redirect_from categories
post
Detect document ready in pure JS
46
loverajoel
The cross-browser way to check if the document has loaded in pure JavaScript
/en/detect-document-ready-in-pure-js/
en
javascript

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.