jquery page load code example

Example 1: jquery document ready

// jQuery document ready
$(document).ready(function() {
    
});

Example 2: call a function on load jquery

$(document).ready(function () {
  // Function code here.
});

Example 3: jquery doc ready

// A jQuery( document ).ready() block.
jQuery( document ).ready(function() {
    console.log( "ready!" );
});

Example 4: document. ready

$( document ).ready(function() {
    console.log( "ready!" );
});

Example 5: document jquery

$(function(){
  // equal to $( document ).ready(function() {
});

Example 6: load page jquery

Syntex
$(selector).load(URL, data, callback);

Example:
$('#loadhere').load('file.html'); 
<div id="loadhere"></div>