jquery document ready short code example
Example 1: jquery document ready
// jQuery document ready
$(document).ready(function() {
});
Example 2: shorthand for jquery document ready
$(function(){
//jQuery code here
});
Example 3: jquery document ready shorthand
jQuery(function() {
// Code here
});