Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bypass IE "The webpage you are viewing..." pop up

Is there a way to bypass the following IE popup box:

The webapge you are viewing is trying to close the window. Do you want to close this window? Yes|No

This is occurring when I add window.close() to the onclick event of an asp.net button control.

like image 966
Michael Kniskern Avatar asked Dec 10 '08 20:12

Michael Kniskern


3 Answers

In the opened popup write following

var objWin = window.self;
objWin.open('','_self','');
objWin.close();
like image 195
d-coder Avatar answered Sep 19 '22 01:09

d-coder


Your JavaScript code can only close a window without confirmation that was previously opened by window.open(). This is an intentional security precaution because a script running on a webpage does not own the window, and by closing it discards the browsing history in that window.

The workaround is to either have a "welcome page" or otherwise some sort of page that pops up the window you want to close with window.open in the first place, or to tell your users to modify their browser security settings to allow your application to close their windows.

like image 38
Tmdean Avatar answered Sep 20 '22 01:09

Tmdean


There is a hack for this.

for IE call:

window.open('close.html', '_self');

then in close.html all you need is:

<script>window.close();</script>

Since this essentially opens a popup, in the same named window, when the "new' window opens, it has an "opener" and thus is allowed to close.

like image 7
scunliffe Avatar answered Sep 19 '22 01:09

scunliffe