Answers for "check if page is ready javascript"

1

js on page ready

document.addEventListener("DOMContentLoaded", function(event){
  // your code here
});

Better than 

window.onload = function(){
    // code goes here
};
Posted by: Guest on April-02-2021
0

check if document is ready js

if( document.readyState !== 'loading' ) {
    console.log( 'document is already ready, just execute code here' );
    myInitCode();
} else {
    document.addEventListener('DOMContentLoaded', function () {
        console.log( 'document was not ready, place code here' );
        myInitCode();
    });
}

function myInitCode() {}
Posted by: Guest on August-09-2021

Code answers related to "check if page is ready javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language