document .ready function in js file code example

Example 1: dom ready js

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

Example 2: document ready without jquery

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

Example 3: javascript document ready

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

Example 4: jquery doc on ready

$(document).ready(() => {
	console.log('ready');
});

Example 5: ondocumentready

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

Example 6: jquery document ready shorthand

// Pass jQuery to a self executing function (closure) that maps it to the dollar sign so it can't be overwritten by another library in the scope of its execution
(function( $ ){
  $.fn.myPlugin = function() {
    // Do your awesome plugin stuff here
  };
})( jQuery );