javscript document on rady code example
Example 1: jquery document ready
// jQuery document ready
$(document).ready(function() {
});
Example 2: documentready
// A $( document ).ready() block.
$( document ).ready(function() {
console.log( "ready!" );
});