The load
event fires for elements containing a resource when the resource has successfully loaded. Currently, the list of supported HTML elements are: <body>
, <embed>
, <iframe>
, <img>
, <link>
, <object>
, <script>
, <style>
, and<track>
.
Note: The load
event on HTMLBodyElement
is actually an alias for the window.onload
event. Therefore, the load
event will only fire on the <body>
element once all of the document's resources have loaded or errored. However, for the sake of clarity, it is recommended that the event handler is attached to the window
object directly rather than on HTMLBodyElement
.
This event is not cancelable and does not bubble.