Refresh 'Window A' when closing 'Window B'...

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

I am trying to work out how to refresh one window when another window is
being closed.

For example, on Window A, I click a link which opens Window B. Then in
Window B, I updated some information, which gets updated to a database,
the change should be reflected in Window A when Window B closes. I don't
want to press F5, this needs to be done automatically.

Thanks,

Mikeal
 
Try placing this in the body tag of window b (second
window):
onunload="opener.location.reload()"
 
Back
Top