page load in jquery code example
Example 1: call a function on load jquery
$(document).ready(function () {
});
Example 2: jquery doc ready
jQuery( document ).ready(function() {
console.log( "ready!" );
});
Example 3: jquery document ready
The .ready() method is typically used with an anonymous function:
$( document ).ready(function() {
});
Which is equivalent to the recommended way of calling:
$(function() {
});
Example 4: load page jquery
Syntex
$(selector).load(URL, data, callback);
Example:
$('#loadhere').load('file.html');
<div id="loadhere"></div>