how to close a browser window within given time using javascript also without the warning message in IE and Firefox
|
|
|||
|
|
|
I agree with the other guys. without looking too hard, I'd say you're out of luck closing a window in javascript without getting a warning message. Any javascript you write will be executed by the browser. If that browser decides to trap a |
||
|
|
|
|
Warining message is browser-dependent and you cant omit that. As far as I remember, you need to open window with script to have rights to close it. |
||
|
|
|
|
You can only close a window (with no user warning) that was previously opened with a script. |
||
|
|
|
|
You can't, the warning message is designed to stop code from disruptively closing windows. |
||
|
|
|
|
Use setTimeout to manage when to run your window.close() script. EDIT : For warning message, I don't know the solution. |
||||
|
|
|
For the warning message, I know StackOverflow uses the onbeforeunload event. If you override that event (not just attach a handler) with a function that returns false, it'll probably get rid of the warning. For example:
|
||
|
|
|
|
Just as a general principle, web browser windows belong to the user, not to you. If you are looking to create, destroy, or resize them, you are doing something wrong. Please put your RL address in your profile. We will be sending a "reeducation team" over to visit you shortly. :-) |
||
|
|
|
|
window.close would only close the window that you have opened using javascript like window.open |
||
|
|
|
|
Only works in IE:
|
||
|
|
