Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problems with Form Navagation

Status
Not open for further replies.

mtorbin

Technical User
Nov 5, 2002
369
US
Hey all,

The web site that I'm referring to is I have a form for the mailing list that pops up. When the form is sent, I would like the following to happen:

1) PopUp window is closed.
2) Thankyou.html is loaded in back window.

How do I accomplish this?

- MT
 
you could have the page that processes your form (the form's action) output some javascript to do it:
Code:
<script type="text/javascript">
opener.location.href = 'Thankyou.html';
self.close();
</script>

-jeff
try { succeed(); } catch(E) { tryAgain(); } finally { rtfm(); }
i like your sleeves...they're real big
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top