Created
July 24, 2013 10:30
-
-
Save itsbalamurali/6069498 to your computer and use it in GitHub Desktop.
Display Date and Time in Javascript The script is simple, we will use the Javascript Object Date to get the date and the time. We will display the month in words(January, February...).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Display Date and Time in Javascript</title> | |
<script type="text/javascript" src="date_time.js"></script> | |
</head> | |
<body> | |
<span id="date_time"></span> | |
<script type="text/javascript">window.onload = date_time('date_time');</script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function date_time(id) | |
{ | |
date = new Date; | |
year = date.getFullYear(); | |
month = date.getMonth(); | |
months = new Array('January', 'February', 'March', 'April', 'May', 'June', 'Jully', 'August', 'September', 'October', 'November', 'December'); | |
d = date.getDate(); | |
day = date.getDay(); | |
days = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'); | |
h = date.getHours(); | |
if(h<10) | |
{ | |
h = "0"+h; | |
} | |
m = date.getMinutes(); | |
if(m<10) | |
{ | |
m = "0"+m; | |
} | |
s = date.getSeconds(); | |
if(s<10) | |
{ | |
s = "0"+s; | |
} | |
result = ''+days[day]+' '+months[month]+' '+d+' '+year+' '+h+':'+m+':'+s; | |
document.getElementById(id).innerHTML = result; | |
setTimeout('date_time("'+id+'");','1000'); | |
return true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment