views:

842

answers:

1

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

A: 

Have you tried:

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

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

Bravax
Yes i have tried that changes nothing. Even with an additional GET parameter.
Richard
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