pageLoad() event in Atlas

The pageLoad() event appears to be a new special event in Atlas.  All you have to do is put it into a page with the Atlas runtime embedded.  For example, the following code works and displays the alert message as expected.

function pageLoad()

{

alert("pageLoad() event called.");

}

 

No Comments