Flash Games
 FAQ   Search   Memberlist   Usergroups   Register  Profile   Log in to check your private messages   Log in 


Html for day,date and year



 

Post new topic   Reply to topic  
   DEVPPL Forum Index -> Script-archive
View previous topic :: View next topic  
Author Message
kakarot_90



Joined: 25 Mar 2007
Posts: 9

PostPosted: Sun Apr 15, 2007 12:43 pm    Post subject: Html for day,date and year Reply with quote

Ever wanted to put date on ur site?Cut & paste the below code.


<script language="JavaScript" type="text/javascript">
<!--
var
month = new Array();
month[0]="January";
month[1]="February";
month[2]="March";
month[3]="April";
month[4]="May";
month[5]="June";
month[6]="July";
month[7]="August";
month[8]="September";
month[9]="October";
month[10]="November";
month[11]="December";
var
day = new Array();
day[0]="Sunday";
day[1]="Monday";
day[2]="Tuesday";
day[3]="Wednesday";
day[4]="Thursday";
day[5]="Friday";
day[6]="Saturday";
today = new Date();
date = today.getDate();
day = (day[today.getDay()]);
month = (month[today.getMonth()]);
year = (today.getFullYear());
suffix = (date==1 || date==21 || date==31) ? "st" : "th" &&
(date==2 || date==22) ? "nd" : "th" && (date==3 || date==23) ? "rd" : "th"
function print_date()
{
document.write(day + "," + "&nbsp;" + date + "<sup>" + suffix + "</sup>" + "&nbsp;" +
month + "," + "&nbsp;" + year);
}
// -->
</script>
<script>
<!--
print_date();
//-->
</script>
Back to top
View user's profile Send private message
Tomi
500+ Club


Joined: 26 Jun 2006
Posts: 818

PostPosted: Sun Apr 15, 2007 1:15 pm    Post subject: Re: Html for day,date and year Reply with quote

Thanks for sharing Smile im sure webmaster will put this into the script archive.
Back to top
View user's profile Send private message Visit poster's website
SalmonBoy11



Joined: 16 Nov 2007
Posts: 22

PostPosted: Mon Nov 19, 2007 6:00 am    Post subject: Re: Html for day,date and year Reply with quote

Ooh, I did that once to the status bar, but I'd forgotten the code. Thanks man.
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    DEVPPL Forum Index -> Script-archive All times are GMT + 1 Hour
Page 1 of 1

 
 
Welcome to DEVPPL.com
You are not logged in, which means that you can't post in the forums.
Click here to Register

If you are a current member here on DEVPPL, please login below:

User: Pass:
Log me on automatically each visit:

 


Powered by phpBB © 2001, 2005 phpBB Group - Modified by DEVPPL

Flash Games - Sitemap