OnLoad
OnLoad refers to a trigger or handler that runs when a component, document, or interface has finished loading. It is used to perform initialization tasks that require all resources to be available, such as rendering data, attaching event handlers, or starting animations.
In web browsers, the onload event fires after the entire document and all dependent resources have loaded.
Best practices encourage using DOMContentLoaded or similar events to initialize UI quickly, reserving onload for tasks
Beyond the browser, OnLoad is used in various GUI frameworks as a conventional name for initialization code