ready() function code example

Example 1: document ready without jquery

document.addEventListener("DOMContentLoaded", function(event) { 
  //we ready baby
});

Example 2: document ready

// A $( document ).ready() block.
$( document ).ready(function() {
    console.log( "ready!" );
});

Example 3: document ready

$( document ).ready(function() {
    console.log( "ready!" );
});

Example 4: js ready

// without jQuery (doesn't work in older IEs)
document.addEventListener('DOMContentLoaded', function(){ 
    // your code goes here
}, false);

Example 5: js dom ready function

<!doctype html>
<html>
<head>
</head>
<body>
Your HTML here

<script>
// self executing function here
(function() {
   // your page initialization code here
   // the DOM will be available here

})();
</script>
</body>
</html>