I need a popup window to appear to the user but without a parent window. However, I believe this to be impossible.
I think that I may have to make the popup close the parent after it appears, but how?
iI tried this in the popup:
<BODY align="center" valign="center" onload="javascript:window.opener='x';window.close();">
But it closed the popup window itself. How can I make the popup close its parent?
Try
window.opener.close()instead.