When a user visits my website there is a \"Login\" link on every page. Clicking this uses some JavaScript to show an overlay window where the user is prompted for their cred
When we want to refresh the parent page from the child page without any prompt.
Here is the code:
window.opener.location.href = window.opener.location;
This simply refreshes the parent page without any prompt.