onAfterLoad

fires after an HTML page was loaded to the component

void onAfterLoad();

Example

$$('myIframe').attachEvent("onAfterLoad",function(){
           alert("Loading is finished!");
});

Details

Note that the event will be envoked only if you load page(s) from the same domain the page with the Iframe view resides.

See also
Back to top