Answers for "window on ready"

16

js vanilla dom ready

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
5

jquery on window ready

// A $( document ).ready() block.
$( document ).ready(function() {
    console.log( "ready!" );
});
Posted by: Guest on February-28-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language