How can I reload my child window\'s parent using jQuery?
top.frames.location.reload(false);
Prevents previous data from been resubmitted. Tested in Firefox and Safari.
top.frames.location.href = top.frames.location.href;
No jQuery is necessary in this situation.
window.opener.location.reload(false);
https://developer.mozilla.org/en-US/docs/Web/API/Window
This working for me:
window.opener.location.reload()
window.close();
In this case Current tab will close and parent tab will refresh.
this will work
window.location.assign(window.location.href);
This will work for refresh parent window from child window
window.opener.location.reload(true);
for some version of IE this will not work so you can set some delay
window.setTimeout(window.opener.location.reload(true), 3000);