What is the purpose of the method .ready( handler ) in jQuery ? code example
Example 1: jquery doc ready
// A jQuery( document ).ready() block.
jQuery( document ).ready(function() {
console.log( "ready!" );
});
Example 2: jquery ready
// jQuery document ready function
$(function() {
// do stuff
});