Results 1 to 3 of 3

Thread: alert

  1. #1
    Join Date
    Dec 2005
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question alert

    Can I make an alert to appear a few seconds after a page is loaded???

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Put this in the head of the page:

    Code:
    <script type="text/javascript">
    onload=function(){setTimeout("alert('Hi There!')", 3000)}
    </script>
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Dec 2005
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Smile thanks

    Quote Originally Posted by jscheuer1
    Put this in the head of the page:

    Code:
    <script type="text/javascript">
    onload=function(){setTimeout("alert('Hi There!')", 3000)}
    </script>

    Thanks

    Tintinfreak

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
  •