![]() |
|
|
+ Search |
![]()
|
Dec 24th, 2000 16:17
Juergen Thelen, Bill Fletcher,
One way to accomplish this is to define a javascript function residing
inside your parent windows code, e.g.
function ChildLoaded()
{
// your code
}
and to use the onLoad handler in the body tag of the document to be
loaded into your child window to call this function then
<body onLoad="parent.ChildLoaded()">
Hope this helps.
Juergen