Closing Pages

  • Thread starter Thread starter Burt Rosner
  • Start date Start date
B

Burt Rosner

Question:

Is there a Front Page (either JAVAScript, or VBScreipt, or
whatever)command to close a page?

I thought I saw this command, but can't seem to locate
again.

Thanks, in advance, for your help,

Burt
 
here is one that is supposed to show up only if the window was opened from a
pop-up:

<script language="JavaScript">
<!--
if (window.opener)
document.write('<strong><a href="#" onclick="self.close();">' +
'Close this window</a></strong>');
//-->
</script>
you may have to open the window with the script this was with. if you need
that just email me and I'll send it to you.
HTH
 
Chris,

Thanks for the info.

I was wondering if it would be possible to close one page
from another.

Thanks again,

Burt
 
Back
Top