Skip to content

Instantly share code, notes, and snippets.

@jarontai
Created February 20, 2014 03:13
Show Gist options
  • Save jarontai/9106463 to your computer and use it in GitHub Desktop.
Save jarontai/9106463 to your computer and use it in GitHub Desktop.
Close window
if (navigator.userAgent.indexOf("MSIE") > 0) {
if (navigator.userAgent.indexOf("MSIE 6.0") > 0) {
window.opener = null; window.close();
}
else {
window.open('', '_top'); window.top.close();
}
}
else if (navigator.userAgent.indexOf("Firefox") > 0) {
window.location.href = 'about:blank ';
//window.history.go(-2);
}
else {
window.opener = null;
window.open('', '_self', '');
window.close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment