Hi,
I am trying to write a javascript that will redirect to another page.... Should be straight forward but in version 6.0.2900 of IE with XP my browser is "blocking active content". Do anyone know if there is a way to write a redirect script that IE will allow?
(Btw using META tag is not an option since I need to test a variable...)
<html>
<head>
<script language="JavaScript">
function doRedirect()
{
window.location.replace( " );
}
</script>
</head>
<body onload="doRedirect();>
<p>Loading <a href=" target</a></p>
<p>If you can see this please click above</p>
</body>
</html>
I am trying to write a javascript that will redirect to another page.... Should be straight forward but in version 6.0.2900 of IE with XP my browser is "blocking active content". Do anyone know if there is a way to write a redirect script that IE will allow?
(Btw using META tag is not an option since I need to test a variable...)
<html>
<head>
<script language="JavaScript">
function doRedirect()
{
window.location.replace( " );
}
</script>
</head>
<body onload="doRedirect();>
<p>Loading <a href=" target</a></p>
<p>If you can see this please click above</p>
</body>
</html>