How to make a page stay for a while

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
User avatar
raghavan20
DevNet Resident
Posts: 1451
Joined: Sat Jun 11, 2005 6:57 am
Location: London, UK
Contact:

How to make a page stay for a while

Post by raghavan20 »

I am thinking of making pages stay for a while instead of annoying javascript - alert messages. I wanted to do like the one when we submit a post, we come across a screen that stays on for a while and takes us to another page.

How to do that?
User avatar
Chris Corbyn
Breakbeat Nuttzer
Posts: 13098
Joined: Wed Mar 24, 2004 7:57 am
Location: Melbourne, Australia

Post by Chris Corbyn »

Just meta redirection that usually does it.

<meta http-equiv="refresh" content="10; http://www.site.com/newpage/" />

If you want something more definite as to whether something worked I'd suggest XMLHttp -> It's alot more advanced howver but Burrito put a nice tutorial in the "Tutorials" section ;)
Post Reply