I want to set background-color for cell with date 2014-10-22. I find a solution:
date = new Date(y,m,d); date = $.fullCalendar.formatDate(date,
CSS solution helped me fix this:
CSS
For Today date:-
.fc-today { background-color: #ffffff; } .ui-widget-content .ui-state-highlight { background-color: #fff !important; background-image: none; }
For Other days:
.fc-day { background-color: green; }
Good Luck.