Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I need a good calendar script.. 1

Status
Not open for further replies.

help120

Technical User
Apr 15, 2001
198
US
I need a calendar script.
1. I need to beable to asign ppl pw and id so they can edit the dates.
 
i cant able to understand ur shortterms.any way i send a calendar program using javascript


<HTML>
<HEAD>
<TITLE>
JavaScript calendar
</TITLE>
</HEAD>
<BODY>
<!-- JavaScript immediate script -->
<SCRIPT LANGUAGE=&quot;JavaScript&quot;>
<!--

// Copyright 1997 -- Tomer Shiran

setCal()

function getTime() {
// initialize time-related variables with current time settings
var now = new Date()
var hour = now.getHours()
var minute = now.getMinutes()
now = null
var ampm = &quot;&quot;

// validate hour values and set value of ampm
if (hour >= 12) {
hour -= 12
ampm = &quot;PM&quot;
} else
ampm = &quot;AM&quot;
hour = (hour == 0) ? 12 : hour

// add zero digit to a one digit minute
if (minute < 10)
minute = &quot;0&quot; + minute // do not parse this number!

// return time string
return hour + &quot;:&quot; + minute + &quot; &quot; + ampm
}

function leapYear(year) {
if (year % 4 == 0) // basic rule
return true // is leap year
/* else */ // else not needed when statement is &quot;return&quot;
return false // is not leap year
}

function getDays(month, year) {
// create array to hold number of days in each month
var ar = new Array(12)
ar[0] = 31 // January
ar[1] = (leapYear(year)) ? 29 : 28 // February
ar[2] = 31 // March
ar[3] = 30 // April
ar[4] = 31 // May
ar[5] = 30 // June
ar[6] = 31 // July
ar[7] = 31 // August
ar[8] = 30 // September
ar[9] = 31 // October
ar[10] = 30 // November
ar[11] = 31 // December

// return number of days in the specified month (parameter)
return ar[month]
}

function getMonthName(month) {
// create array to hold name of each month
var ar = new Array(12)
ar[0] = &quot;January&quot;
ar[1] = &quot;February&quot;
ar[2] = &quot;March&quot;
ar[3] = &quot;April&quot;
ar[4] = &quot;May&quot;
ar[5] = &quot;June&quot;
ar[6] = &quot;July&quot;
ar[7] = &quot;August&quot;
ar[8] = &quot;September&quot;
ar[9] = &quot;October&quot;
ar[10] = &quot;November&quot;
ar[11] = &quot;December&quot;

// return name of specified month (parameter)
return ar[month]
}

function setCal() {
// standard time attributes
var now = new Date()
var year = now.getYear()
var month = now.getMonth()
var monthName = getMonthName(month)
var date = now.getDate()
now = null

// create instance of first day of month, and extract the day on which it occurs
var firstDayInstance = new Date(year, month, 1)
var firstDay = firstDayInstance.getDay()
firstDayInstance = null

// number of days in current month
var days = getDays(month, year)

// call function to draw calendar
drawCal(firstDay + 1, days, date, monthName, 1900 + year)
}

function drawCal(firstDay, lastDate, date, monthName, year) {
// constant table settings
var headerHeight = 50 // height of the table's header cell
var border = 2 // 3D height of table's border
var cellspacing = 4 // width of table's border
var headerColor = &quot;midnightblue&quot; // color of table's header
var headerSize = &quot;+3&quot; // size of tables header font
var colWidth = 60 // width of columns in table
var dayCellHeight = 25 // height of cells containing days of the week
var dayColor = &quot;darkblue&quot; // color of font representing week days
var cellHeight = 40 // height of cells representing dates in the calendar
var todayColor = &quot;red&quot; // color specifying today's date in the calendar
var timeColor = &quot;purple&quot; // color of font representing current time

// create basic table structure
var text = &quot;&quot; // initialize accumulative variable to empty string
text += '<CENTER>'
text += '<TABLE BORDER=' + border + ' CELLSPACING=' + cellspacing + '>' // table settings
text += '<TH COLSPAN=7 HEIGHT=' + headerHeight + '>' // create table header cell
text += '<FONT COLOR=&quot;' + headerColor + '&quot; SIZE=' + headerSize + '>' // set font for table header
text += monthName + ' ' + year
text += '</FONT>' // close table header's font settings
text += '</TH>' // close header cell

// variables to hold constant settings
var openCol = '<TD WIDTH=' + colWidth + ' HEIGHT=' + dayCellHeight + '>'
openCol += '<FONT COLOR=&quot;' + dayColor + '&quot;>'
var closeCol = '</FONT></TD>'

// create array of abbreviated day names
var weekDay = new Array(7)
weekDay[0] = &quot;Sun&quot;
weekDay[1] = &quot;Mon&quot;
weekDay[2] = &quot;Tues&quot;
weekDay[3] = &quot;Wed&quot;
weekDay[4] = &quot;Thu&quot;
weekDay[5] = &quot;Fri&quot;
weekDay[6] = &quot;Sat&quot;

// create first row of table to set column width and specify week day
text += '<TR ALIGN=&quot;center&quot; VALIGN=&quot;center&quot;>'
for (var dayNum = 0; dayNum < 7; ++dayNum) {
text += openCol + weekDay[dayNum] + closeCol
}
text += '</TR>'

// declaration and initialization of two variables to help with tables
var digit = 1
var curCell = 1

for (var row = 1; row <= Math.ceil((lastDate + firstDay - 1) / 7); ++row) {
text += '<TR ALIGN=&quot;right&quot; VALIGN=&quot;top&quot;>'
for (var col = 1; col <= 7; ++col) {
if (digit > lastDate)
break
if (curCell < firstDay) {
text += '<TD></TD>'
curCell++
} else {
if (digit == date) { // current cell represent today's date
text += '<TD HEIGHT=' + cellHeight + '>'
text += '<FONT COLOR=&quot;' + todayColor + '&quot;>'
text += digit
text += '</FONT><BR>'
text += '<FONT COLOR=&quot;' + timeColor + '&quot; SIZE=2>'
text += '<CENTER>' + getTime() + '</CENTER>'
text += '</FONT>'
text += '</TD>'
} else
text += '<TD HEIGHT=' + cellHeight + '>' + digit + '</TD>'
digit++
}
}
text += '</TR>'
}

// close all basic table tags
text += '</TABLE>'
text += '</CENTER>'

// print accumulative HTML string
document.write(text)
}

// -->
</SCRIPT>
</BODY>
</HTML>


i hope this code can help u

webspy


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top