How to make JavaScript execute after page load?

Robin Rodricks picture Robin Rodricks · Apr 30, 2009 · Viewed 1.6M times · Source

I'm executing an external script, using a <script> inside <head>.

Now since the script executes before the page has loaded, I can't access the <body>, among other things. I'd like to execute some JavaScript after the document has been "loaded" (HTML fully downloaded and in-RAM). Are there any events that I can hook onto when my script executes, that will get triggered on page load?

Answer

marcgg picture marcgg · Apr 30, 2009

These solutions will work:

<body onload="script();">

or

document.onload = function ...

or even

window.onload = function ...

Note that the last option is a better way to go since it is unobstrusive and is considered more standard.