jQuery fullcalendar custom event
- by raulriera
Hi,
I was wondering how to apply a custom render to a event... I want to be able to preppend the "patient" name of a practice agenda...
eventRender: function(event, element) {
console.log(element[0]);
}
This currently shows the HTML output in the console, but I don't know how can I access it (in a pretty jquery manner) in order to manipulate the data within.
Thanks