Vanart

How can i create a nice javascript calender?

Asked by Vanart 2 years ago jquery javascript calender


Renee
1
 
This tutorial might help, although I think it's a CSS only calendar: www.nikibrown.com

by Renee 2 years ago

Cy Klassen
1
 
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.)

by Cy Klassen 2 years ago

Xsh
0
 
www.my97.net is a good JavaScript Calender which can be used directly or as references.

by Xsh 2 years ago

Bano Xeno
0
 
Im searchin for a cal to push event with php there from mySQL... If some one can help please?

Thnx

by Bano Xeno 2 years ago

Nikowillson
0
 
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 += '&lt;';
calString += '&lt;';
// calString += '&nbsp;';
calString += '' + months[this.month] + ', ' + this.year + '';
calString += '&gt;';
calString += '&gt;';
calString += '';
calString += '';
calString += '';

return calString;
}

by Nikowillson 2 years ago

Answer this question

How can i create a nice javascript calender?

0 errors found:

 
0