shorthand for jquery document ready code example
Example 1: document ready without jquery
document.addEventListener("DOMContentLoaded", function(event) {
//we ready baby
});
Example 2: shorthand for jquery document ready
$(function(){
//jQuery code here
});
Example 3: document ready
$( document ).ready(function() {
console.log( "ready!" );
});
Example 4: jquery document ready shorthand
jQuery(function() {
// Code here
});