Friday 30 May 2014

jQuery window.load() vs document.ready()

 
$(window).load(function () {

vs 

$(function() {
$( document ).ready(function() {


ready() executes when the DOM is fully loaded (see http://api.jquery.com/ready/).  
load() Executes always later than ready() when all the content (images, css, etc) has been loaded

Had problem when showing a confirmation dialog when the page was rendered; images where not loaded!

No comments:

Post a Comment