jacktripper
Programmer
Is there a way to tell when a parent page has been loaded? Such as a parent.onload command?
I know this is a common problem, but I'm having a dilly of a time finding a usable solution.
Details:
I have an HTML form which passed data to a PHP page, and an onClick command to open a pop-up advertisement. The PHP page actually generates a PDF document (taking a while) and therefore doesn't have a <BODY> tag where I can use an onload() function to close the child window. Somehow the child has to be able to tell when that PDF document is finished loading in the parent window, and then close itself (the child).
Any ideas?