I think the fullcalendar jquery-plugin is a really great solution. However, I noticed the plugin escapes (htmlEscape) the title. But I need to format some strings in the title,
To easily have all html in event titles show I used this, makes it very easy.
eventRender: function (event, element) { element.find('span.fc-event-title').html(element.find('span.fc-event-title').text()); }
Which was found here http://code.google.com/p/fullcalendar/issues/detail?id=152