How can I detect if the page is finished loading pletely? I say pletely because I tried putting an alert statement in the $(document).ready(function()
code, but the alert statement happens before the wheel stops spinning in IE (After like 1.5 seconds, the wheel stops, and that's when the page is pletely loaded). (its the loading wheel you see in the top of IE9 where the tab is).
Thanks
How can I detect if the page is finished loading pletely? I say pletely because I tried putting an alert statement in the $(document).ready(function()
code, but the alert statement happens before the wheel stops spinning in IE (After like 1.5 seconds, the wheel stops, and that's when the page is pletely loaded). (its the loading wheel you see in the top of IE9 where the tab is).
Thanks
Share Improve this question asked Sep 1, 2012 at 19:45 omegaomega 44k90 gold badges286 silver badges523 bronze badges 1-
also you can put your function on particular element like
<body onload='loadfunction()'> </body
– Anant Dabhi Commented Sep 1, 2012 at 19:54
6 Answers
Reset to default 4You can use load
method:
The load event fires at the end of the document loading process. At this point, all of the objects in the document are in the DOM, and all the images and sub-frames have finished loading.
$(window).load(function(){
// ...
})
$(window).load(function() {
// do stuff
});
Now use
$(window).on('load', function(){ ...});
Below is deprecated and may give "Uncaught TypeError: a.indexOf is not a function" error
$(window).load(function() {
// do stuff
});
Try using the window.onload
event.
Try
$(window).load(function(){
//....
});
The document ready
event executes already when the HTML-Document is loaded and the DOM is ready, even if all the graphics haven’t loaded yet and the window load
event executes a bit later when the plete page is fully loaded, including all frames, objects and images.
$(document).ready(function(){});
Above function guarantees that the DOM is ready to be modified by javascript. It does not guarantees about the xhr request which are asynchronous in nature to load.SO there might be situation that some xhr request is happening and the spinner shows loading untill there is no http request in progress.