Close window hyperlink

P

PT

I want a menue item to close a window, or a link to do the same. I'm using a new window to display a single page. Obviously the user could hit the "X" on the window to close it but I want an additional link to do so. Thanks for the help.
 
S

Steve Easton

<input type="button" value="Close Page" Onclick="parent.close()">

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer

PT said:
I want a menue item to close a window, or a link to do the same. I'm using a new window to
display a single page. Obviously the user could hit the "X" on the window to close it but I want an
additional link to do so. Thanks for the help.
 
W

Wally S

<a href="javascript:window.close()">Close Window</a>

You can replace "Close Window" with any text you want.

Wally S

PT said:
I want a menue item to close a window, or a link to do the same. I'm
using a new window to display a single page. Obviously the user could hit
the "X" on the window to close it but I want an additional link to do so.
Thanks for the help.
 
Top