vote up 0 vote down star

Hi,

i have following problem. I have a parent site withs forms. And i have links which open a popup via open.window.

I want to reload the parent site with opener.location.reload(); in the Jquery .unload event. This works fine till the user submits the form on the parent site and then closes the popup. I get the usual "This page cannot be refreshed without resending information" Message.

I tried to add some GET Parameter to the opener.location.href, which had no effekt.

Can i somehow simulate a post submit with the opener.location.reload(); event? Maybe you have some other ideas?

Bye Richie

flag

78% accept rate

1 Answer

vote up 0 vote down check

Have you tried:

opener.location.href = opener.location.href;

This will do a GET of the opening page, back to itself.

link|flag
Yes i have tried that changes nothing. Even with an additional GET parameter. – Richard Jun 10 at 9:23
After few tests i think this should work in the most cases. I use SAP BSP and had to rewrite parts of the opener.location.href. – Richard Jun 10 at 12:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.