snippet library logo
The Best Html Forum Around
in category
Javascript / Time / Date / TODAYS DATE
Snippet details
ID: 507
Viewed: 1817
Added: 2003-07-13
Version: Unknown
Sorry no demo

User Rated at:
Rate This:
Snippets in this catagory         
Show Printable Version
This neat little script adds the date onto your page wherever you place the code.

General Details
Snippet uploaded by: XilverFaerie
Email : xilverfaerie@sympatico.ca
Snippet By: XilverFaerie

<!---Head--->
none

<!---Body--->


Content Goes here<br>
<b>THE DATE:</b>
<font face=arial><b>
<SCRIPT LANGUAGE="JavaScript1.2">

<!-- Begin
var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)
year = year + 1900;
document.write(lmonth + " ");
document.write(date + ", " + year);
// End --&gt;
</SCRIPT>
&lt;/b&gt;&lt;/font&gt;




No Reviews to show


Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Subject:

Reviewed By:

Write a review:





Terms of Conditions
Powered By
Avian Hosting
© 2005 snippetlibrary.com All Rights Reserved.