|
Calendars
You are here: irt.org | Articles | JavaScript | Date and Time | Calendars
Published on: Sunday 1st December 1996 By: Martin Webb
calendar.htm source code
<head>
<title>Popop Calendar</title>
</head>
<script language="JavaScript"><!--
function y2k(number) {
return (number < 1000) ? number + 1900 : number;
}
var today = new Date();
var year = y2k(today.getYear());
var month = today.getMonth();
//--></script>
<frameset frameborder="0" framespacing="0" rows="100%,*">
<frame scrolling="no"
frameborder="0"
marginheight="0"
marginwidth="0"
name="cal"
noresize
src="cal.htm">
</frameset>
</html>
|
Feedback on 'Calendars'
View the profile on Martin Webb and the list of other Articles by Martin Webb.
|
|
Copyright © 1996-2008 irt.org, All Rights Reserved.