In JavaScript, when I want to run a script once when the page has loaded, should I use window.onload
or just write the script?
For example, if I want to have a pop-up, should I write (directly inside the <script>
tag):
alert("hello!");
Or:
window.onload = function() { alert("hello!"); }
Both appear to run just after the page is loaded. What is the the difference?
window. onload just runs when the browser gets to it. window. addEventListener waits for the window to be loaded before running it.
The onload property processes load events after the element has finished loading. This is used with the window element to execute a script after the webpage has completely loaded.
ready() is a jQuery event which occurs when the HTML document has been fully loaded, while the window. onload event occurs later, when everything including images on the page loaded.
The window. onload event gets fired when all resources - including images, external script, CSS - of a page have been loaded. If you want to do something when that event has been fired you should always use the window.
The other answers all seem out of date
First off, putting scripts at the top and using window.onload
is an anti-pattern. It's left over from IE days at best or mis-understandings of JavaScript and the browser at worst.
You can just move your scripts the the bottom of your html
<html> <head> <title>My Page</title> </head> <body> content </body> <script src="some-external.js"></script> <script> some in page code </script> </html>
The only reason people used window.onload
is because they mistakenly believed scripts needed to go in the head
section. Because things are executed in order if your script was in the head section then the body and your content didn't yet exist by definition of execute in order.
The hacky workaround was to use window.onload
to wait for the rest of the page to load. Moving your script to the bottom also solved that issue and now there's no need to use window.onload
since your body and content will have already been loaded.
The more modern solution is to use the defer
tag on your scripts but to use that your scripts need to all be external.
<head> <script src="some-external.js" defer></script> <script src="some-other-external.js" defer></script> </head>
This has the advantage that the browser will start downloading the scripts immediately and it will execute them in the order specified but it will wait to execute them until after the page has loaded, no need for window.onload
or the better but still unneeded window.addEventListener('load', ...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With