Не работает window.onclose
<html>
<head>
<title>JavaScript</title>
<script>
var r;
function ajax()
{
if ( window.XMLHttpRequest )
r=new XMLHttpRequest();
else
if ( window.ActiveXObject )
r=new ActiveXObject("Microsoft.XMLHTTP");
else
if (!r)
r=new ActiveXObject("Msxml2.XMLHTTP");
r.open("get","action.php",true);
r.send(null);
}
window.onclose=ajax;
</script>
</head>
<body>
</body>
</html>
Ничего не делает после закрытия
|