I need to execute some javascript when the page has fully loaded. This includes things like images.
I know you can check if the DOM is ready, but I didn't know if this is the same as when the page is fully loaded.
|
I need to execute some javascript when the page has fully loaded. This includes things like images. I know you can check if the DOM is ready, but I didn't know if this is the same as when the page is fully loaded. |
|||||||||||
|
|
That's called onload. It came waaaaay before DOM ready was around, and DOM ready was actually created for the exact reason that onload waited on images.
|
|||||||||
|
|
Usually you can use Some people suggest weird contortions to work around this problem, but really if you just make a Some versions of Opera have a bug that can be worked around by adding the following somewhere in your page:
If you're just trying to get a javascript function called once per-view (and not necessarily after the DOM is finished loading), you can do something like this:
For example, I use this trick to preload a very large file into the cache on a loading screen:
|
||||
|
|
|
the window.onload event will fire when everything is loaded, including images etc. You would want to check the DOM ready status if you wanted your js code to execute as early as possible, but you still need to access DOM elements. |
|||
|
|
|
You may want to use window.onload, as the docs indicate that it's not fired until both the DOM is ready and ALL of the other assets in the page (images, etc.) are loaded. |
|||||||||||
|
|
And here's a way to do it with PrototypeJS:
|
|||
|
|
|
Try this code
visit https://developer.mozilla.org/en-US/docs/DOM/document.readyState for more details |
||||
|
|