8. 8. 2006

Javascript - zavření okna bez dotazu

Trik v IE, nezobrazí dotaz před zavřením okna


var ie7 = (document.all && !window.opera && window.XMLHttpRequest) ? true : false;

if (ie7)
{
//This method is required to close a window without any prompt for IE7
window.open('','_parent','');
window.close();
}
else
{
//This method is required to close a window without any prompt for IE6
this.focus();
self.opener = this;
self.close();
}

Žádné komentáře: