how to make things happed with page loads with jqueary code example
Example 1: jquery run after page load
$(window).on('load', function() {
// code here
});
Example 2: jquery onload event
// A $( document ).ready() block.
$( document ).ready(function() {
console.log( "ready!" );
});