Answers for "execute function when dom is ready js"

20

dom ready js

document.addEventListener("DOMContentLoaded", function() {
  // code
});
Posted by: Guest on April-02-2020
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

Code answers related to "Javascript"

Browse Popular Code Answers by Language