$(document).on('load', function(event) code example
Example 1: call a function on load jquery
$(document).ready(function () {
// Function code here.
});
Example 2: document load javascript
window.onload = function() {
// Code here
}
$(document).ready(function () {
// Function code here.
});
window.onload = function() {
// Code here
}