How to redirect?

Any problem with javascript can be discussed here.
Locked
Kaky
Posts: 274
Joined: Tue Apr 18, 2006 7:43 pm

How to redirect?

Post by Kaky »

How to redirect a user from and lets say and add filled page to the desired page in lets say 15 seconds but give him the option to skip the adds could you post the code also please??? :?:


Image

A funny picture -------> me , myself and i (too much for this world)
Valiantheart
Posts: 51
Joined: Mon Apr 03, 2006 5:31 pm

Post by Valiantheart »

I think that would be a javascript code? Or is there a php code for that?
jasondsouza
Posts: 348
Joined: Thu Jan 12, 2006 8:24 pm
Contact:

Post by jasondsouza »

mebe i can help you just tell me what you actually want to do.
--jasondsouza
ME working on a very new site. (Coming soon)
Come to my web Site
Lixas
Posts: 750
Joined: Wed Feb 16, 2005 4:21 pm

Post by Lixas »

<SCRIPT language="JavaScript">
function getgoing()
{
window.location="some_kind_of_page.php";
}
setTimeout('getgoing()',10000);
</SCRIPT>
Place this script in the end of your **** body before

Code: Select all

</body>......
user will be redirected within 10 seconds, but within 10 sec he can **** some kind of your link and he will go to his location
Image
Kaky
Posts: 274
Joined: Tue Apr 18, 2006 7:43 pm

Post by Kaky »

Many thanks ppl i think that this is what i needed!!! :D
Image

A funny picture -------> me , myself and i (too much for this world)
Locked