Close Button

R

Richard Harker

Does anybody out there know how to add a close button or
link that will close the page and the Explorer window???

Any help would be greatly appreciated

Thanks

Richard Harker
 
G

Guest

Hi Mike,

Thanks for the information, however I don't possess any
JavaScript knowledge as i am not a developer, just a
network administrator, do I need to just paste the code
into frontpage or is there, as I suspect more to it than
that??

Thanks


Richard

-----Original Message-----
Hi Richard,

In JavaScript

self.close();

Or see http://www.websunlimited.com/order/Product/General/popup_wi
ndow_component.htm
--
Mike -- FrontPage MVP '97-'02
http://www.websunlimited.com
FrontPage Add-ins Since '97 FP 2003 / 2002 / 2000 Compatible

"Richard Harker" <[email protected]>
wrote in message [email protected]...
 
M

MD Websunlimited

Hi Richard,

The code will need to be associated with an image or button

<a href="javascript:void(0);" onclick="self.close();return false;"><img src="myimage.gif"></a>

Paste the following in to the window to be closed changing the path to the image.
 
R

Richard Harker

Hi Mike,

Thats works a treat, Thanks very much

Richard

-----Original Message-----
Hi Richard,

The code will need to be associated with an image or button

<a href="javascript:void(0);" onclick="self.close
();return false;"> said:
Paste the following in to the window to be closed
changing the path to the image.
 
Top