three-cups
three-cups

Reputation: 4385

Javascript library to create calendar HTML

I'd like to find a Javascript library that will generate calenders (month views) dynamically. Something like

createCalendar(1, 2011)

to create a calendar for Jan 2011.

I also need to highlight certain days, so I would need to be able to either specify that in the createCalendar method or be able to select certain days using CSS selectors.

I do not need a datepicker. This is for display purposes only.

Upvotes: 5

Views: 6536

Answers (3)

warrickh
warrickh

Reputation: 1646

This seems like a smart option:

http://kylestetz.github.io/CLNDR/

Upvotes: 2

Adrian Garcia
Adrian Garcia

Reputation: 858

You can also take a look at this one:

http://arshaw.com/fullcalendar/

Upvotes: 0

Cygnusx1
Cygnusx1

Reputation: 5409

Did you see this one?

Jquery plugin calendar

Upvotes: 1

Related Questions