I have a script to close my window after a specified amount of time (in this
case about 15 seconds).
*************** *************** *************** *
<script language="javas cript">
function KillMe()
{
setTimeout("sel f.close()",1500 0);
}
</script>
</head>
<body style="margin:0 " onLoad="KillMe( );">
*************** *************** *************** *******
This script works fine in Mozilla, but in IE it stays open for about 2
seconds and closes.
Why doesn't it work for IE?
Thanks,
Tom.
case about 15 seconds).
*************** *************** *************** *
<script language="javas cript">
function KillMe()
{
setTimeout("sel f.close()",1500 0);
}
</script>
</head>
<body style="margin:0 " onLoad="KillMe( );">
*************** *************** *************** *******
This script works fine in Mozilla, but in IE it stays open for about 2
seconds and closes.
Why doesn't it work for IE?
Thanks,
Tom.
Comment