Click to See Complete Forum and Search --> : Popup window form question?


KD_3000
09-14-2003, 05:11 PM
Hi all,

What I would like to do, is to have the popup window's - parent window refresh when a user clicks the submit button for the popup window's form, and at the same time close the popup window.

I have NO idea how to do this or even if you can.:)

Thanks!

pyro
09-14-2003, 05:13 PM
<input type="submit" value="submit" onclick="window.opener.location.reload(true); window.close();">

KD_3000
09-14-2003, 05:35 PM
Thanks pyro,

I'll give your code a try and report back.:)

KD_3000
09-14-2003, 05:47 PM
Pyro, pyro, pyro!

Thanks, it works like a charm in I.E.:D

I don't use Netscape, AOL or Opera, Mozilla, will your code work in those browsers?

pyro
09-14-2003, 05:49 PM
Yes, it should. None of that code is proprietary IE code... :)

KD_3000
09-14-2003, 05:55 PM
Thanks very cool!

pyro
09-14-2003, 06:01 PM
You are welcome... :)