Pop-Ups

  • Thread starter Thread starter Nancy E.
  • Start date Start date
N

Nancy E.

I have seen a message on various sites that says "Click to Close Window"
after clicking on a link to pop-up a page or photo. I think it is called
alt. text or something like that. I like it on pages with multiple photos so
I don't have to continously click on the Close Browser button.

Can this be done with FP 2003 and can the placement of the text be
controlled?
 
<input type="button" value="Close Page" name="Closeup"
Onclick="parent.close()">

Will create a button labeled Close Page that will close a window when
clicked.
You can place it anywhere on the page.

You can also place a close command in the body tag, that will close the page
if a viewer clicks anywhere on the page.

<body Onclick="parent.close()">
You then make the alt tag for the image read:
Click to Close Window

hth
 
That did help. Thanks a lot!
Steve Easton said:
<input type="button" value="Close Page" name="Closeup"
Onclick="parent.close()">

Will create a button labeled Close Page that will close a window when
clicked.
You can place it anywhere on the page.

You can also place a close command in the body tag, that will close the page
if a viewer clicks anywhere on the page.

<body Onclick="parent.close()">
You then make the alt tag for the image read:
Click to Close Window

hth

--
95isalive
This site is best viewed..................
..............................with a computer
photos
 
Back
Top