Jump to content

Greybox modal refresh parent window


solarisuser

Recommended Posts

in the opened window:

<body onunload="window.opener.location.reload(true);">

 

If you want to preserve form data (soft reload), use the history method.

window.opener.history.go(0); 

'0' causes the page to reload, a negative value represents how many steps backward you'd like to go.

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.