Forum Moderators: open
window.opener.history.go(0) Is there a command that does this and work for all browsers or should I have to use different commands for different browsers?
opener.location.reload();
This will force the parent window to refresh. Usually I follow that code with this:
window.close();
So the user can click the "close" button and have the main window reload.
this works when the user clicks the "close" button, but if they just click the "X" it doesn't. You can use the onUnload="opener.location.reload()" routine in the <BODY> to catch that one.