| Issue 1129: | dayClick example with jquery-ui theme | |
| Back to list |
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'); |
|
| ► Sign in to add a comment |
or you could just do: $(this).css('background', 'green');