Results 1 to 4 of 4

Thread: Javascript TimeOut

  1. #1
    Senior Member
    Join Date
    Mar 2002
    Posts
    502

    Question Javascript TimeOut

    Hiya, i'm looking for a script. It has to display text, and after a few sec's display something else. I know it's a simple script (for someone who knows javascript) but i can't find it anywere. I've looked on multiple script sites and it just aint there. Can anyone help me on this?

    Thanx
    Bleh.

  2. #2
    Senior Member
    Join Date
    Nov 2001
    Posts
    472
    This might be what you're looking for:
    http://www.the-cool-place.co.uk/java...andpaste5.html
    ---
    proactive

  3. #3
    Senior Member
    Join Date
    Nov 2001
    Location
    Ireland
    Posts
    734
    Code:
    <script language=javascript>
    document.write("Instantly
    ");
    setTimeout("document.write('After Three Seconds')", 3000);
    </script>
    Maybe this might work.

  4. #4
    Senior Member
    Join Date
    Mar 2002
    Posts
    502
    YEAH, That's it. Thanx Jethro. I just couldn't come up with it.

    Thanx again.
    Bleh.

Posting Permissions

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