jquery shortcut for document ready code example

Example 1: jquery doc ready

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

Example 2: shorthand for jquery document ready

$(function(){ 
	//jQuery code here 
});

Example 3: document ready

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

Example 4: 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 );

Example 5: jquery document ready shorthand

jQuery(function() {
    // Code here
});