Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm familiar with the typical use of onload, as in the following:

<body onload="alert('Hello, World!');">
...
</body>

Is there anywhere else in a page that onload is valid? I can experiment to see if it will work in <script>...</script> tags, but it might save me some time if anyone knows all the places that it's valid to use onload.

share|improve this question

4 Answers

up vote 14 down vote accepted

'onload' is supported by the following HTML tags:

<body>, <frame>, <frameset>, <iframe>, <img>, <link>, <script>

And the following Javascript objects:

image, layer, window

Source w3schools

share|improve this answer
What about non-tags, like a DOM document or window? (I am unsure, but I think they have onload as well.) – strager Mar 24 '09 at 23:46
Wow, that update was fast. ;P +1 – strager Mar 24 '09 at 23:47
Thanks. You guys make me look lazy. :) – Bill the Lizard Mar 24 '09 at 23:47
@strager: I was writing about them as you wrote that comment :) – Brian R. Bondy Mar 24 '09 at 23:48
1  
Actually, HTML4.01 only allows onload in <frameset> and <body> (source: w3.org/TR/html401/interact/scripts.html#adef-onload ), and I think there are some cross-browser issues with onload for script tags – Christoph Mar 25 '09 at 1:59
show 5 more comments

onload is an event specific to the body, frame, iframe, img, link, and script elements. Basically anything which represents a resource to be loaded. For body, that is the document in question. For the others, each is fairly obvious.

share|improve this answer

Many elements have the onload event. You can find them here

But if you want to test the loading of the DOM, then it's best to use the window.onload. It's also recommended that you separate the javascript code from the HTML markup.

share|improve this answer

According to this page, you can use onload with: <body>, <frame>, <frameset>, <iframe>, <img>, <link>, and <script>.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.