Search results for 'today'. 1 post(s) found.

  1. 2007/08/31 Basic Date Display
2007/08/31 08:05

Basic Date Display


Use this code snippet to display today's Date on your Web page


<!-- ONE STEP TO INSTALL BASIC Date DISPLAY:

  1.  Copy the coding into the BODY of your HTML document  -->

<!-- STEP ONE: Paste this code into the BODY of your HTML document  -->

<BODY>

<SCRIPT LANGUAGE="JavaScript">

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!--  Author: www.cgiscript.net  -->

<!-- Begin

// Get today's current Date.
var now = new Date();

// Array list of days.
var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

// Array list of months.
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

// Calculate the number of the current day in the week.
var Date = ((now.getDate()<10) ? "0" : "")  now.getDate();

// Calculate four digit year.
function fourdigits(number)    {
    return (number < 1000) ? number   1900 : number;
                                }

// Join it all together
today =  days[now.getDay()]   "," 
         months[now.getMonth()]   " " 
         Date   "," 
         (fourdigits(now.getYear())) ;

// Print out the data.
document.write(today);

//  End -->
</script>


<p><center>
<font face="arial,helvetica" size"-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>

<!-- Script Size:  1.30 KB -->

Trackback 3 Comment 0

Trackback : Cannot send a trackbact to this post.

  1. Subject different money making ideas

    Tracked from moneyideas 2010/01/29 02:52 delete

    moneyideas

  2. Subject different money making ideas

    Tracked from moneyideas 2010/01/29 11:36 delete

    moneyideas

  3. Subject different money making ideas

    Tracked from moneyideas 2010/01/31 16:45 delete

    moneyideas