1
This tutorial might help, although I think it's a CSS only calendar: www.nikibrown.com
In a recent web app project we were exploring various "Calendar Date Selectors". If you are using jQuery (and maybe even if you aren't) I recommend checking this out. (After reading your question again, not sure if a "date picker" is exactly what you are asking for.)
www.my97.net is a good JavaScript Calender which can be used directly or as references.
Im searchin for a cal to push event with php there from mySQL... If some one can help please?
Thnx
Thnx
With the following code you'll be able to create a JS powered calander that will shift to the relevant month when you click on the < > buttons...good luck :)
function writeCalendar(){
var calString = '';
calString += '';
// calString += '' + months[this.month] + ', ' + this.year + '';
calString += '<';
calString += '<';
// calString += ' ';
calString += '' + months[this.month] + ', ' + this.year + '';
calString += '>';
calString += '>';
calString += '';
calString += '';
calString += '';
return calString;
}
function writeCalendar(){
var calString = '';
calString += '';
// calString += '' + months[this.month] + ', ' + this.year + '';
calString += '<';
calString += '<';
// calString += ' ';
calString += '' + months[this.month] + ', ' + this.year + '';
calString += '>';
calString += '>';
calString += '';
calString += '';
calString += '';
return calString;
}