Answers for "check when document is loaded jaascript"

1

dom is loaded

document.addEventListener('DOMContentLoaded', (event) => {
    console.log('DOM fully loaded and parsed');
});
Posted by: Guest on June-25-2020
0

if document is loaded

if (document.readyState === 'complete') {
  // The page is fully loaded
}
Posted by: Guest on March-05-2021

Code answers related to "check when document is loaded jaascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language