Suppose you have opened a child window from a parent window and you want to refresh the parent window, how will you do that ?
Type the code in the function call:-
window.parent.document.location.reload();
The above code will refresh the parent window instantly.
Note : Also note that the child window will go away after the parent window has been refreshed !
Thanks and Regards
Akiii