Results 1 to 4 of 4

Thread: redirect to another url in 5 seconds

  1. #1
    Join Date
    Nov 2007
    Posts
    151
    Thanks
    67
    Thanked 0 Times in 0 Posts

    Question redirect to another url in 5 seconds

    Hi

    I am looking for some code, which will allow me to redirect from some file to another URL in 5 seconds

    Do you have any idea?

    Thanks

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Does this work for you, add it at the top of your page in the <head> section:
    Code:
    <META http-equiv="refresh" content="5;URL=url">
    Or if you want javascript:
    Code:
    <script type="text/javascript">
    setTimeout("window.location='url'",5000);
    </script>
    Change the highlighted.
    Last edited by Nile; 06-13-2008 at 11:55 AM.
    Jeremy | jfein.net

  3. The Following User Says Thank You to Nile For This Useful Post:

    d-machine (06-14-2008)

  4. #3
    Join Date
    Nov 2007
    Posts
    151
    Thanks
    67
    Thanked 0 Times in 0 Posts

    Default

    THANKS !!!
    YOU ARE GENIUS

  5. #4
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Anytime d-machine.
    Jeremy | jfein.net

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •