Answers for "javascript document on load"

17

javascript page load event

//two ways of executing JS code after page is loaded, use "DOMContentLoaded" when able

document.addEventListener("DOMContentLoaded", function(){
    //dom is fully loaded, but maybe waiting on images & css files
});

window.addEventListener("load", function(){
    //everything is fully loaded, don't use me if you can use DOMContentLoaded
});
Posted by: Guest on July-31-2019
1

document load javascript

window.onload = function() {
  // Code here
}
Posted by: Guest on June-06-2020
0

js document onload

//use
window.onload=()=>{};
Posted by: Guest on April-11-2020
1

html tag run only after whole page is loaded

<body onload="script();">
<!-- will call the function script when the body is load -->
Posted by: Guest on September-11-2020
1

js document on load

document.onload = function ...
Posted by: Guest on May-31-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language