eventClick change background-color
I am trying to change the "event" background-color when I click the event in FullCalendar I am trying the following - $(document).ready(function() { $('#calendar').fullCalendar({ editable: true, events: "json-events.php", eventDrop: function(event, delta) { alert(event.id); }, loading: function(bool) { if (bool) $('#loading').show(); else $('#loading').hide(); }, eventClick: function(event){ $(event.target).css('background-color','yellow'); } }); }); This however does nothing. Can this be done and can someone point me in the right direction? Thanks eventClick: function(event) { event