Issue 1129: dayClick example with jquery-ui theme
Status:  WontFix
Owner:
Closed:  Aug 2013
Project Member Reported by adamrs...@gmail.com, Sep 28, 2011
from luke m...

I just hit this issue when using the example dayClick() function at http://arshaw.com/fullcalendar/docs/mouse/dayClick/

Setting the background colour doesn't work if you are using a jQuery-UI theme as the background colour is hidden by an image overlay. Instead, you have to do:

       $(this).removeClass('ui-widget-content')
       $(this).css('background-color', 'green');
Aug 14, 2013
Project Member #1 adamrs...@gmail.com
or you could just do:

$(this).css('background', 'green');
Status: WontFix