newton.dave wrote: > > --- Martin Gainty <[EMAIL PROTECTED]> wrote: >> use javascript >> javascript:history.back(); > > I don't believe that would submit the form in the parent window, and I > don't > think the window that popped up would have a history anyway, no? > > Dave > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > With window.opener you ge ta handle to the parent-window. To submit / reload the form in the parent and close the child do something like this: var parentWindow = window.opener; parentWindow.document.forms[0].action=url; /* Whatever the action will be or leave it as it is */ parentWindow.document.forms[0].submit(); parentWindow.focus(); window.close(); -- View this message in context: http://www.nabble.com/Struts1---how-to-reload-parent-window-from-popup-tp15917342p19370582.html Sent from the Struts - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]