AddLoadCallback

Adds a callback that is invoked after the page loads.

Parameters

Name Type Description
callback Function The function to be invoked when the page loads.

Return Value

Result Value
(none)  

Example

This example registers a named function to be called when the page loads:

function customLoadCallback()
{
    MakeFieldDisabled( "Priority" );
}

AddLoadCallback( customLoadCallback);

Comments

Callbacks are invoked in the order in which they are added. This delays scripting until all of the page objects load. If this method is called after the page loads, it has no effect. This method is often used to set the initial state of fields and controls on a form.