home *** CD-ROM | disk | FTP | other *** search
Wrap
<ccResource> <ccTitle> Date </ccTitle> <ccCategory> Clocks </ccCategory> <ccDescription> This will create a header on the top right side of your webpage with the current date and time. </ccDescription> <ccInstructions> Place this script in between the HEAD tags of your webpage. Change the size and color of the text by altering the values found in the next to last line of the JavaScript. </ccInstructions> <ccHeadContent> <SCRIPT LANGUAGE="JavaScript"> //Modified by CoffeeCup Software //This code is Copyright (c) 2000 CoffeeCup Software //all rights reserved. License is granted to a single user to //reuse this code on a personal or business Web Site. var now = new Date(); var hours = now.getHours(); var minutes = now.getMinutes(); var timeValue = "" + ((hours >12) ? hours -12 :hours) timeValue += ((minutes < 10) ? ":0" : ":") + minutes timeValue += (hours >= 12) ? " P.M." : " A.M." timerRunning = true; mydate = new Date(); myday = mydate.getDay(); mymonth = mydate.getMonth(); myweekday= mydate.getDate(); weekday= myweekday; myyear= mydate.getYear(); year = myyear if(myday == 0) day = " Sunday, " else if(myday == 1) day = " Monday, " else if(myday == 2) day = " Tuesday, " else if(myday == 3) day = " Wednesday, " else if(myday == 4) day = " Thursday, " else if(myday == 5) day = " Friday, " else if(myday == 6) day = " Saturday, " if(mymonth == 0) month = "January " else if(mymonth ==1) month = "February " else if(mymonth ==2) month = "March " else if(mymonth ==3) month = "April " else if(mymonth ==4) month = "May " else if(mymonth ==5) month = "June " else if(mymonth ==6) month = "July " else if(mymonth ==7) month = "August " else if(mymonth ==8) month = "September " else if(mymonth ==9) month = "October " else if(mymonth ==10) month = "November " else if(mymonth ==11) month = "December " document.write("<B><P ALIGN=RIGHT><FONT SIZE=-1 FACE=VERDANA,ARIAL>" + timeValue + " | " +day + month); document.write(myweekday+","+ " 2000</FONT></B><BR><HR WIDTH=300 ALIGN=RIGHT><P>"); </SCRIPT> <!--This is the end of the JavaScript Make sure this script is between the HEAD tags--> </ccHeadContent> <ccBodyContent> </ccBodyContent> <ccElementContent> <ccElementName></ccElementName> <ccElementAction></ccElementAction> </ccElementContent> <ccExtraData> </ccExtraData> </ccResource>