Pop-up Style Window

  • Thread starter Thread starter Steven
  • Start date Start date
S

Steven

I need a little help figuring this one out, so thanks in advance...

I am having a page with several links on the page. When a link is clicked,
I want a small window to put up in say the upper left of the screen, with
like a "close window" link in it...I see these on all kinds of websites.
How can I do this?

Thanks again,
Steve
 
The small window with "Close Window" in it
won't close the large window that was opened
when the link was clicked, it will only close
the small window.!!

If you want a clickable link to close a window
use this:

<input type="button" value="Close Page" name="Closeup"
Onclick="parent.close()">
 
<form><input type="button" value="Close
Window"onClick="window.close()"></form>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top