Wooody New member Feb 27, 2007 110 0 0 Sep 20, 2007 #1 Just wondering how what code to use on a landing page to automaticly redirect after an amount of time. Eg. Click to Landing page, stays on landing page for 5 secs, then redirects to offer. Any help appreciated.
Just wondering how what code to use on a landing page to automaticly redirect after an amount of time. Eg. Click to Landing page, stays on landing page for 5 secs, then redirects to offer. Any help appreciated.
babyboy808 Content king Sep 1, 2006 163 1 18 Here, there, you know www.code-sucks.com Sep 20, 2007 #2 you could use a meta tag, something like: <meta http-equiv="Refresh" content="5;url=http://www.myoffer.com/">
you could use a meta tag, something like: <meta http-equiv="Refresh" content="5;url=http://www.myoffer.com/">
Mike New member Jun 27, 2006 6,777 116 0 51 On the firing line Sep 20, 2007 #3 Javascript version: Code: [COLOR=White]<body onload=setTimeout("location.href='http://www.yahoo.com'",5000)[/COLOR][COLOR=White][/COLOR][COLOR=White]> 5000 is equal to 5000 milliseconds or 5 seconds [/COLOR]
Javascript version: Code: [COLOR=White]<body onload=setTimeout("location.href='http://www.yahoo.com'",5000)[/COLOR][COLOR=White][/COLOR][COLOR=White]> 5000 is equal to 5000 milliseconds or 5 seconds [/COLOR]
Xrproto Waste of e-space Aug 1, 2006 1,869 13 0 Sep 21, 2007 #5 PHP Code: header('Refresh: 5; url=http://www.spam.edu/');