#1
| |||
| |||
Date Script at HTML I a looking for code in html to display date and time. The code must display current date and time. Is that possible to display previous date and time with the same code, if yes then what are syntax need to declare for current and previous date format. |
#2
| |||
| |||
Re: Date Script at HTML HTML codes for date : Code: <script language="JavaScript"> <!-- date=Date() document.write(date) //--> </script> |
#3
| |||
| |||
Re: Date Script at HTML Code: <Script type="text/javaScript"> // current date. var nw = new Date(); var dys = new Array('Sund','Mon','Tues','Wed','Thur','Fri','Sat'); // Array list of months. var months = new Array('Jan','Feb','Mar','Ap','Ma','Jun','Jul','Aug','Sep','Oct','Nov','Dec'); var date = ((now.getDate()<10) ? "0" : "")+ now.getDate(); function fourts(number) { return (number < 1000) ? number + 1900 : number; } tod = days[now.getDay()] + ", " + months[now.getMonth()] + " " + date + ", " + (fourdigits(now.getYear())) ; document.write(tod); // End --> </script> |
#4
| |||
| |||
Re: Date Script at HTML Try the following code to display date in html Code: <script type="text/javascript"> var da=new Date(); var weda=new Array ("Sun","Mon","Tue","Wed","Thu","Fri", "Sat"); var month=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"); document.write(weekday[da.getDay()] + " "); document.write(da.getDate() + ". "); document.write(monthname[da.getMonth()] + " "); document.write(da.getFullYear());</script> |
![]() |
|
Tags: code, display date, html, html date, syntax |
Thread Tools | Search this Thread |
|
![]() | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Where can I get free HTML Wallpaper Script | Brexton | Software Development | 4 | 17-01-2011 07:55 AM |
Date field in HTML form | Messenger | Software Development | 6 | 29-07-2010 10:30 AM |
PHP Decoder for HTML Script | Mind It | Software Development | 3 | 29-09-2009 02:36 PM |
Date, days in HTML | Jacob | Software Development | 4 | 09-02-2009 09:17 PM |
Script insert date in the name of my file | Viensterrr | Software Development | 4 | 31-10-2008 07:18 PM |