Ugh. I have been trying for a few hours and I simply cannot get it. What I am trying to do is what people go to my site, it randomly redirects them to another site. I know how to do a redirect but a random one is impossible! So, I want them to go to www.mywebsite.com and then get redirected to www.website.com, www.website1.com, www.website2.com, or www.website3.com. If anyone could give me any help I will give you a big hug. (Only if you wanted me to ) Jared
Impossible to do in HTML but not in Javascript http://forums.digitalpoint.com/showthread.php?t=177247 To make the delay shorter, change 3000 to a lesser value. And you can give SoKickIt the hug
you can do it in html <meta http-equiv="refresh" content="3;URL=http://eyeew.com"/> HTML: in javascript This page will redirect to <a href="http://eyeew.com">eYeew!</a> after 3 seconds <script> setTimeout( "document.location.href='http://eyeew.com'", 3000 ) </script> HTML:
Yeah, but he wants random redirection to one of several sites. Anyway, using meta refresh is discouraged these days.