| Issue 2214: | HTML in Title. Working example. | |
| 1 person starred this issue and may be notified of changes. | Back to list |
I want to use HTML in the title, using the eventRender:
eventRender: function (event, element) {
element.find('.fc-event-title').html(event.title);
}
and title is:
title: '<b>This</b> is test title.',
but HTML is not working. What do I do wrong?
Jul 27, 2014
if you are using v2.1 beta, the classname has changed to simply ".fc-title" beyond that, i dont know. you'll have to use the javascript debugger.
Status:
Done
|
|
| ► Sign in to add a comment |
This modification: eventRender: function(event, element) { element.find('span.fc-event-title').html(element.find('span.fc-event-title').text()); } is not result too.