|
|
|
<!--
COLOPHON
TITLE
TempersFewGit v 2.1 (ISO 8601 Date/Time script)
OBJECTIVE
Javascript script to detect the time zone where a browser
is and display the date and time in accordance with the
ISO 8601 standard.
AUTHOR
John Walker
321WebLiftOff.net
jfwalker@ureach.com
ENCOMIUM
Thanks to Stephen Pugh for his help.
CREATED
2000-09-15T09:42:53+01:00
REFERENCES
For more about ISO 8601 see:
www.w3.org/TR/NOTE-datetime
www.cl.cam.ac.uk/~mgk25/iso-time.html
COPYRIGHT
This script is Copyright © 2000 JF Walker All Rights
Reserved but may be freely used provided this colophon is
included in full.
ENDS
-->
<!-- THREE STEPS TO INSTALL ISO CLOCK:
1. Copy the coding into the HEAD of your HTML document
2. Add the onLoad event handler into the BODY tag
3. Put the last coding into the BODY of your HTML document
-->
<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function isodatetime() {
var today = new Date();
var year = today.getYear();
if (year < 2000) // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
var month = today.getMonth() + 1;
var day = today.getDate();
var hour = today.getHours();
var hourUTC = today.getUTCHours();
var diff = hour - hourUTC;
var hourdifference = Math.abs(diff);
var minute = today.getMinutes();
var minuteUTC = today.getUTCMinutes();
var minutedifference;
var second = today.getSeconds();
var timezone;
if (minute != minuteUTC && minuteUTC < 30 && diff < 0) { hourdifference--; }
if (minute != minuteUTC && minuteUTC > 30 && diff > 0) { hourdifference--; }
if (minute != minuteUTC) {
minutedifference = ":30";
}
else {
minutedifference = ":00";
}
if (hourdifference < 10) {
timezone = "0" + hourdifference + minutedifference;
}
else {
timezone = "" + hourdifference + minutedifference;
}
if (diff < 0) {
timezone = "-" + timezone;
}
else {
timezone = "+" + timezone;
}
if (month <= 9) month = "0" + month;
if (day <= 9) day = "0" + day;
if (hour <= 9) hour = "0" + hour;
if (minute <= 9) minute = "0" + minute;
if (second <= 9) second = "0" + second;
time = year + "-" + month + "-" + day + "T"
+ hour + ":" + minute + ":" + second + timezone;
document.isoclock.display.value = time;
window.setTimeout("isodatetime();", 500);
}
// End -->
</script>
</HEAD>
<!-- STEP TWO: Insert the onLoad event handler into your BODY tag -->
<BODY OnLoad="isodatetime()">
<!-- STEP THREE: Copy this code into the BODY of your HTML document -->
<center>
<form name=isoclock>
<input type=text name=display size=22 style="border:0;">
</form>
</center>
</body>
|
| PHP Calendar Categories : PHP, Calendar, Date Time, Java Script, CSS | | | Local Time clock and Server time usign PHP and JavaScript Categories : PHP, Java Script, Date Time, Beginner Guides | | | Local-to-user date and time display regardless of time zone or where the website's server is located Categories : PHP, Date Time, HTML and PHP, Java Script | |
| | Javascript Date Picker Categories : Java Script, Date Time, Calendar | | | Java Script which implements a Clock (Client Side) Categories : Java Script, Date Time | | | enhanced date picker with jcript checking for a dynamic date input Categories : PHP, Java Script, Date Time, Calendar, Arrays | | | Simple Javascript CSS Digital Clock Categories : Java Script, Date Time, CSS, Beginner Guides, Web Design | | | Higly Customizable Javascript Calendar Script Categories : Java Script, Calendar, Date Time, HTML, CSS | | | Date Validation using JavaScript. Intended to use it as checkdate() from PHP. Categories : Java Script, Date Time, PHP | | | Calendars to choose a range of dates , reservation events ... Categories : PHP, Calendar, Java Script, Date Time | | | Enchancing dd/mm/yyyy forms with unobtrusive javascript Categories : Java Script, HTML, User Interface, Date Time | | | calculus of the eastersunday Categories : BC math, PHP, Date Time, Databases | | | Functions used to define a schedule of holidays. Can define non-fixed holidays (eg. 3rd sunday of June). Categories : Calendar, Date Time, PHP | | | Classic guest book made with PHP and Flash Categories : PHP, Flash, Java Script | |
| | | | Tim N wrote :1817
This JavaScript code is deprecated since it is still using the getYear() method of date that Microsoft Internet
Explorer badly implemented in search for a Y2K bug. Any
modern implementation should be using getFullYear() method
instead that Microsoft Internet Explorer implemented
correctly.
| |
|
|