jquery document ready

JavaScript
// jQuery document ready
$(document).ready(function() {
    
});$( document ).ready(function() {
    console.log( "ready!" );
});$( document ).ready(function() {
    console.log( "ready!" );
});
// A jQuery( document ).ready() block.
jQuery( document ).ready(function() {
    console.log( "ready!" );
});The .ready() method is typically used with an anonymous function:
$( document ).ready(function() {
  // Handler for .ready() called.
});

Which is equivalent to the recommended way of calling:
$(function() {
  // Handler for .ready() called.
});The .ready() method is typically used with an anonymous function:
$( document ).ready(function() {
  // Handler for .ready() called.
});

Which is equivalent to the recommended way of calling:
$(function() {
  // Handler for .ready() called.
});
Source

Also in JavaScript: