user198729
user198729

Reputation: 63686

How to implement a calendar like google's with jQuery?

It should provide ease to add event to the calendar.

When I click on the cell,should let me edit the notes.

EDIT

I've looked through many calendars but none of them meet the requirement that it should let the user add notes easily!

Upvotes: 4

Views: 3846

Answers (5)

Dilbert
Dilbert

Reputation: 73

Here is one I put together. I sorta looks like Google Calendar.

http://code.google.com/p/jquery-frontier-calendar/

Upvotes: 1

T. Stone
T. Stone

Reputation: 19495

Gotta bump for my favorite... FullCalendar. Does Day/Week/Month view, with a really great API, and optional support for jQuery UI Themes.

Upvotes: 1

Juri
Juri

Reputation: 32930

Depends on what you really need. Since you didn't 100% specify it, I point you to the possibility of embedding a publicly shared Google Calendar on your site: http://www.google.com/support/calendar/bin/answer.py?hl=en&answer=41207

Since you're so strict on having the exact same functionality as on GCalendar it may satisfy your needs.

Upvotes: 0

Sampson
Sampson

Reputation: 268434

jMonthCalendar and jQuery Week Calendar are both pretty good. If you want to roll your sleeves up and get your hands dirty making your own, there's a nice tutorial online demonstrating how to make an iCal-like jQuery Calendar. There's an online demo too: http://www.stefanoverna.com...ical_like_calendar/

Upvotes: 4

Related Questions