How to close an Internet Explorer window without the security Dialog

2 February, 2005 (15:59) | Software Development | By: Niels

I found this cool code sample from a site I was visiting. This will allow you to close the IE window that is open by setting the close property

< SCRIPT >function closeThisWindow(){    window.opener = window;    window.close();}< / SCRIPT >

Write a comment