0

I'm trying to refresh parent browser at child browser.

opener.location is working but, opener.locaiton.reload not working.

Is there anyone who knows the reason??

kabirbaidhya
  • 3,264
  • 3
  • 34
  • 59
clapmin
  • 51
  • 4

2 Answers2

0

Can you try this window.opener.location.reload(false);

https://developer.mozilla.org/en/DOM/window.opener

Thai Doan
  • 300
  • 3
  • 14
0

This should work. I tested it in Chrome, Firefox, IE and Safari on Windows 7.

<button onclick="window.opener.location.reload();">refresh</button>

Check this: Refresh parent on close popup.

Sebastian Simon
  • 18,263
  • 7
  • 55
  • 75
wind13
  • 75
  • 1
  • 10