Click to See Complete Forum and Search --> : Naming windows/popups with JavaScript
Raskii
09-17-2001, 12:32 AM
I'm working on a rather large PHP/JavaScript form and I want to reload the "parent" form from a popup window. How do I do this? I'm using frames and have given the "parent" form a name (ParentForm), but I can't get the popup window to reload it.
EyesWideOpen
09-19-2001, 03:26 PM
If you wanted to reload with a link from the pop-up window you could do something like this in the pop-up window:
<a href="javascript: parent.framename.location.reload()">Reload Window</a>
framename would probably be ParentForm in your case but you may have to play with that.
Raskii
09-20-2001, 10:37 AM
I don't want to reload the page, I want to load the same page and send an array through the query string.