DYNAMIC CALENDERS

JavaScript calendars have existed for a long time now, but never have they looked pretty (literally), until DHTML came along. Check out Constantin's cool DHTML calendar, which not only looks handsome, but allows you to dynamically look up the calendar for any particular month/ year (by pressing the "Prev Next" buttons). Cool!

Script Provided By: Dynamic Drive

example
CODE (S)

==========================================================

Step 1: Insert the below into the <body> section of your page where you wish the calendar to appear:

<script language="JavaScript" src="calendar.js"></script>
<script language="JavaScript">

/*
Dynamic Calendar Script- By Constantin (http://212.1.77.9/)
Permission given to Dynamic Drive to include script in archive
For 1000's more DHTML scripts, visit http://dynamicdrive.com
*/

var cal = new Calendar();
</script>

==========================================================

Step 2: Add the below event handler into the <body> tag itself, like this:

<body onLoad="setCurrentMonth()">

==========================================================

Step 3: Finally, you need to download the following file (by clicking it, or clicking it with the shift key depressed for NS users), and upload it into the same directory as the page containing the calendar:

calendar.js

==========================================================

YOUR DONE !

==========================================================

For help concerning this script, please email me at: [email protected]

==========================================================

MAIN