Post the Date in Numbers


Script by: Adam Ross

     See the date above? That's what this does. Just paste it in where you want it to go. Here's the script:

<SCRIPT LANGUAGE="JavaScript">

//Writen by Adam Ross
//http://www.geocities.com/SoHo/4643/

Todays = new Date();
document.write(Todays.getMonth()+ "-" + Todays.getDate() + "-" +
Todays.getYear() )

</SCRIPT>

Back to the Text-Based Scripts