Dark_Ripon
I have set redirect code in my xtgem site following this code:
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<script type="text/javascript">
function rdr(){
window.location="http://google.com";
}
setTimeout(rdr(),1000);
</script>
</head>
<body>
Page contents.....
</body>
</html>
Graham
I find location.href has issues with security on chrome location.assign and location.replace do not seem to have these issues