document loaded jquery code example
Example 1: call a function on load jquery
$(document).ready(function () {
// Function code here.
});
Example 2: document ready without jquery
document.addEventListener("DOMContentLoaded", function(event) {
//we ready baby
});
Example 3: document jquery
$(function(){
// equal to $( document ).ready(function() {
});