jquery run function on load code example
Example 1: jquery run after page load
$(window).on('load', function() {
// code here
});
Example 2: document ready without jquery
document.addEventListener("DOMContentLoaded", function(event) {
//we ready baby
});
Example 3: jquery doc ready
// A jQuery( document ).ready() block.
jQuery( document ).ready(function() {
console.log( "ready!" );
});