Fullcalendar, Make Today Button for current month active
问题 Today button disable for current month. when you go next or previous month it appear as active(when click on the TODAY button control goes to current month). In following code I am showing how to make today button active for current month. function makeTodaybtnActive() { $('#calendar button.fc-today-button').removeAttr('disabled'); $('#calendar button.fc-today-button').removeClass('fc-state-disabled'); } (where #calendar is fullcalendar id) call this function when calendar load $(window).load