Site hosted by Angelfire.com: Build your free website today!

Script Title: Date Script

Description: This script allows you to put the current date in a location specified by you. It is very similar to the script on the homepage which tells the date.

Example: Today is Monday, June 7.

Credit: Script created by Website Abstraction

Download Script: Click here to download a .exe file of this script

Copy the following code into the BODY of your html pa

<script language="Javascript">
<!--
/*
Today's date script
Visit java-scripts.net or 
http://wsabstract.com for this script
*/

var dayName = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday")

var monName = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")

var now = new Date

document.write("Today is " + dayName[now.getDay()] + ", " + monName[now.getMonth()] + " "+now.getDate() +".")

//-->
</script>