News

window.load - It is fired when everything on the page is loaded. By everything I mean that when the DOM is loaded, when all the related images to that page is ready and the CSS is ready and all the ...
1 - Document.ready function is called as soon as HTML DOM is loaded, where Body.onload function is called when everything gets loaded on the page that includes HTML DOM, images and all associated ...
_window.onload OR $(window).load will execute the code inside after everything is loaded (included images) _$(document).ready will execute the code inside after everything is loaded (excluded images) ...