Articles

Javascript to close popup window and load parent

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();