Articles
Javascript to close popup window and load parent
- Details
- Published on Thursday, 03 November 2011 17:12
Whilst looking at authentication applications I found this piece of code handy
window.opener.location.href = window.opener.location.href;
if (window.opener.progressWindow)
window.opener.progressWindow.close()
window.close();