Results 1 to 3 of 3

Thread: Dates & time
      
   

  1. #1
    Aminiasi is offline Sergeant
    Join Date
    Jun 2008
    Posts
    23

    Default Dates & time

    Hey Everyone,

    Site is www.tickasports.com.au/constructionstage.

    I was wondering if someone here could help me get a programme or show me how to add an element so that browsers could see a future date gets displayed on that site where the marquee on the top left hand corner is scrolling towards.

    Every help will be very much appreciated.

    Cheers

  2. #2
    WSBlue's Avatar
    WSBlue is offline Brigadier General
    Join Date
    Apr 2006
    Posts
    1,416

    Default Re: Dates & time

    http://www.vodahost.com/vodatalk/gen...-bluevoda.html
    navaldesign
    General & Forum Moderator


    <font style="font-size:12px;font-family:Arial;" color=#000000>
    <div id="basicdate">
    </div>
    </font>
    <script language="JavaScript" type="text/javascript">
    var now = new Date();
    var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thu rsday','Friday','Saturday');
    var months = new Array('January','February','March','April','May',' June','July','August','September','October','Novem ber','December');
    var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
    var year = (now.getYear() < 1000) ? now.getYear() + 1900 : now.getYear();
    today = days[now.getDay()] + ", " + months[now.getMonth()] + " " + date + ", " + year;
    basicdate.innerHTML = today;
    </script>

  3. #3
    Aminiasi is offline Sergeant
    Join Date
    Jun 2008
    Posts
    23

    Default Re: Dates & time

    My apologies, its been long and I just want to thank you for your reply. Have got the date on the site now.

    Cheers to everyone.

    Another one bites the dust!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49