Delayed redirect with PocketPC
Hi,
I try to use the script code below on a pocketPC device to have a delayed redirect but it doesnt work.
Have anyone some idea how to get this work?
<html>
<head>
<title>SPP Redirect</title>
<script language="JavaScript" type="text/javascript">
function sppRedirect(url, time)
{
var cTicks = time;
var timer = setInterval(function()
{
if( --cTicks <= 0)
{
clearInterval(timer);
location = url;
}
}, 1000);
}
</script>
</head>
<body onload="sppRedirect('http://spp.it.volvo.se/', 3)">
</body>
</html>

